<!--
var win=null;
var good = false;
function NewWindow(mypage, myname, w, h, scroll, pos){
	if(pos == "random"){
		LeftPosition = (screen.width) ? Math.floor(Math.random() * (screen.width-w)) : 100;
		TopPosition = (screen.height) ? Math.floor(Math.random() * ((screen.height-h)-75)) : 100;
	} else if(pos == "center"){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 100;
		TopPosition=(screen.height)?(screen.height-h-30)/2:100;
	} else {
		LeftPosition = 0;
		TopPosition = 20
	}
	settings = 'width = ' + w + ',height = ' + h + ',top = ' + TopPosition + ',left=' + LeftPosition + ',scrollbars = ' + scroll + ',location = no,directories = no,status = no,menubar = no,toolbar = no,resizable = yes';
	myscript = "<SCRIPT LANGUAGE='JavaScript1.1'>" +
	"function right(e) {"+
		"if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false;"+
		"else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {"+
		"alert(\"Ooops ;)\");"+
		"return false;"+
		"}"+
	"return true;"+
	"}"+
	"document.onmousedown=right;"+
	"document.onmouseup=right;"+
	"if (document.layers) window.captureEvents(Event.MOUSEDOWN);"+
	"if (document.layers) window.captureEvents(Event.MOUSEUP);"+
	"window.onmousedown=right;"+
	"window.onmouseup=right;"+
	"</script>";
	myWindow = window.open(mypage, "myname", settings);
	pm = "<html><head><title>" + myname + "</title>" + myscript + "</head><body><center><img src=image.php?img=" + myname + "></center></body></html>";
	myWindow.document.write(pm);
}

function ShowPhoto(mypage, myname, w, h, scroll, pos){
	if(pos == "random"){
		LeftPosition = (screen.width) ? Math.floor(Math.random() * (screen.width-w)) : 100;
		TopPosition = (screen.height) ? Math.floor(Math.random() * ((screen.height-h)-75)) : 100;
	} else if(pos == "center"){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 100;
		TopPosition=(screen.height)?(screen.height-h-30)/2:100;
	} else {
		LeftPosition = 0;
		TopPosition = 20
	}
	settings = 'width = ' + w + ',height = ' + h + ',top = ' + TopPosition + ',left=' + LeftPosition + ',scrollbars = ' + scroll + ',location = no,directories = no,status = no,menubar = no,toolbar = no,resizable = yes';
	myscript = "<SCRIPT LANGUAGE='JavaScript1.1'>" +
	"function right(e) {"+
		"if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false;"+
		"else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {"+
		"alert(\"Ooops ;)\");"+
		"return false;"+
		"}"+
	"return true;"+
	"}"+
	"document.onmousedown=right;"+
	"document.onmouseup=right;"+
	"if (document.layers) window.captureEvents(Event.MOUSEDOWN);"+
	"if (document.layers) window.captureEvents(Event.MOUSEUP);"+
	"window.onmousedown=right;"+
	"window.onmouseup=right;"+
	"</script>";
	myWindow = window.open(mypage, "myname", settings);
	pm = "<html><head><title>" + myname + "</title>" + myscript + "</head><body><center><img src=Photos/" + myname + "></center></body></html>";
	myWindow.document.write(pm);
}
//-->
