function randomImageIndex(Arry) {
    var imageb = Arry;
    var randomnum;
    if (navigator.appVersion.indexOf("2.0")!=-1) {
        randomnum=1;
    } else {
        randomnum=Math.floor(imageb.length*Math.random());
    }
    return randomnum;
}

function ViewPhoto(sURL){
   	w = (screen.width * 0.8);
	h = (screen.height * 0.8);
    	ah = (h - 150);
    	window.open('detail.asp?pic='+sURL,'', 'width=' + w + ',height=' + ah + ', left=0, top=0, location=no, toolbar=yes, directories=no, status=yes, menubar=yes, resizable=yes, scrollbars=yes');
}


function OpenWindow(sURL){
   	w = (screen.width * 0.8);
	h = (screen.height * 0.8);
    	ah = (h - 150);
    	window.open(sURL,'', 'width=' + w + ',height=' + ah + ', left=0, top=0, location=no, toolbar=yes, directories=no, status=yes, menubar=yes, resizable=yes, scrollbars=yes');
}

function CloseWindow(){
	window.close()
}

