<!--
function newPhotoWindow(thisPage,thisWidth,thisHeight) {
//-- This function opens the new, empty window.
//  call this script usung this format:
//  <a href="javascript:newPhotoWindow('images.php','width','height')"> </a>

	winStats='toolbar=no,location=no,directories=no,menubar=no,scrollbars=no'
	if (navigator.appName.indexOf("Microsoft")>=0) {
		winStats+=',left=0,top=0,width=' +thisWidth+ ',height=' +thisHeight
   	}else{
		winStats+=',screenX=0,screenY=0,width=' +thisWidth+ ',height=' +thisHeight
	}
	adWindow=window.open(thisPage,"projectImages",winStats);
	adWindow.focus();
}
//-->
