function popWindow(theURL,width,height){	
         startLeftPos = screen.width;
         startTopPos = screen.height;
         leftPos = (startLeftPos-width)/2;
		  topPos = (startTopPos-height)/2;
		  window.open(theURL,'smallWindow','width='+width+',height='+height+',resizable=0,scrollbars=no,toolbar=no,menubar=no,left='+leftPos+',top='+topPos+'');
}

function popGame(theURL,width,height,scroll){	
		  startLeftPos = screen.width;
         startTopPos = screen.height;
         leftPos = (startLeftPos-width)/2;
		  topPos = (startTopPos-height)/2;
		  window.open(theURL,'gameWindow','width='+width+',height='+height+',resizable=no,scrollbars='+scroll+',left='+leftPos+',top='+topPos+'');
	  
}

function popImage(theURL){	
		  width="200";
		  height="325";
		  startLeftPos = screen.width;
         startTopPos = screen.height;
         leftPos = (startLeftPos-width)/2;
		  topPos = (startTopPos-height)/2;
		  window.open(theURL,'jigWindow','width='+width+',height='+height+',resizable=no,scrollbars=no,left='+leftPos+',top='+topPos+'');
	  
}