function popWindow(theURL){	
		  width = 420;
		  height = 550;
         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=yes,left='+leftPos+',top='+topPos);
}

function popPic(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,left='+leftPos+',top='+topPos);
}