//-- Created by Julio C. Arreygue
//-- JCA, 10-4-2001 - New
//-- Opens a new browser window with the movie's details 
function winOpen(strImage)
{
	var strPeram = "directories=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,width=800,height=600,left=2,top=2";
	var strURL = "i/s/" + strImage;	
	var newWindow = window.open("","ScreenShot",strPeram)
	var strDescription = "<html><head><title>Release Schedule Screen Shots</title><script language=javascript src=j-rcdisable.js></script></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();    

}
