function OpenImgPop(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function PopupPic(sPicURL) {
     window.open( "/popup.htm?"+sPicURL, "",  
     "resizable=1,HEIGHT=480,WIDTH=640");
   } 

function PopupFlash(FlashName,FlashFile,FlashWidth,FlashHeight) {
	newWindow = window.open("","newWindow","width="+FlashWidth+",height="+FlashHeight+",left=5,top=5");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+FlashName+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	
	newWindow.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" name="pildid" width="'+ FlashWidth +'" height="'+ FlashHeight +'" id="pildid"><param name="movie" value="'+ FlashFile +'"><param name="QUALITY" value="high"><embed src="'+ FlashFile +'" width="'+ FlashWidth +'" height="'+ FlashHeight +'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="pildid" quality="high"></embed></object>');

	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}






