//-- Created by Julio C. Arreygue
//-- JCA, 10-04-2001 - New
//-- JCA, 03-01-2002 - Copied and changed it to use in the EMS website section. Allowed resizable and scrollbars.
//-- JCA, 12-30-2002 - Copied for the Hollywood Software website and changed path
//-- Opens a new browser window with the movie's details 
function winOpen(strImage)
{
	var strPeram = "directories=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,menubar=no,width=800,height=600,left=2,top=2";
	var strURL = "../../../i/products/ems/" + strImage;	
	var newWindow = window.open("","ScreenShot",strPeram)
	var strDescription = "<html><head><title>EMS Screen Shot</title></head><body bottommargin=0 leftmargin=0 marginwidth=0 marginheight=0 rightmargin=0 topmargin=0 bgColor=#666666><center><img src=" + strURL + " border=0></center></body><html>"
       
    newWindow.document.write(strDescription);
    newWindow.focus();
    newWindow.document.close();    

}