<!--
function openWindowsMedia(movieURL,winName,width,height) {
	  var finalHeight = parseInt(height) + 74;
	  var features = 'width=' + width + ',height=' + finalHeight;
	  var w = window.open('',winName,features);
	  var d = w.document; //Use this variable to save typing
	  //Output the page
	  d.writeln('<html>');
	  d.writeln('<head>');
	  d.writeln('<title>National Security - In theaters January 17, 2003 - Sony Pictures Entertainment</title>');
	  d.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	  d.writeln('</head>');
	  d.writeln('');
	  d.writeln('<body bgcolor=#000000 text="#FFFFFF" link="#CC3300" vlink="#CC3300" alink="#CC3300" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	  d.writeln('<div align="center">');
	  d.writeln('		  <object id="WMP" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" ');
	  d.writeln('			codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" ');
	  d.writeln('			type="application/x-oleobject"  standby="Loading Microsoft Windows Media Player components..." ');
	  d.writeln('			width="'+width+'" height="'+finalHeight+'">');
	  d.writeln('            <param name="AutoSize" value="0">');
	  d.writeln('            <param name="AutoStart" value="1">');
	  d.writeln('            <param name="AnimationAtStart" value="0">');
	  d.writeln('            <param name="FileName" value="'+movieURL+'">');
	  d.writeln('            <param name="PLUGINSPAGE" value="http://www.microsoft.com/Windows/MediaPlayer/">');
	  d.writeln('            <param name="ShowControls" value="1">');
	  d.writeln('            <param name="ShowStatusBar" value="1">');
	  d.writeln('            <embed animationatstart="0" autosize="0" autostart="1" displaybackcolor="black" name="WMP"');
	  d.writeln('				pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" showcontrols="1" showdisplay="0" ');
	  d.writeln('				showstatusbar="1" src="'+movieURL+'" ');
	  d.writeln('				type="video/x-ms-asf-plugin" width="'+width+'" height="'+finalHeight+'">');
	  d.writeln('            </embed> <noembed><a href="'+movieURL+'">Click ');
	  d.writeln('            here to play the trailer</a></noembed> ');
	  d.writeln('          </object> ');
	  d.writeln('</div>');
	  d.writeln('');
	  d.writeln('</body>');
	  d.writeln('</html>');
	  d.writeln('	  ');
}

function openRealPlayer(movieURL,winName,width,height) {
	  var finalHeight = parseInt(height) + 30;
	  var features = 'width=' + width + ',height=' + finalHeight;
	  var w = window.open('',winName,features);
	  var d = w.document; //Use this variable to save typing
	  //Output the page
	  d.writeln('<html>');
	  d.writeln('<head>');
	  d.writeln('<title>National Security - In theaters January 17, 2003 - Sony Pictures Entertainment</title>');
	  d.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	  d.writeln('</head>');
	  d.writeln('');
	  d.writeln('<body bgcolor=#000000 text="#FFFFFF" link="#CC3300" vlink="#CC3300" alink="#CC3300" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	  d.writeln('<div align="center">');
	  d.writeln('		<object id=player width="'+width+'" height="'+height+'" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">');
	  d.writeln('    		<param name="SRC" value="'+movieURL+'">');
	  d.writeln('    		<param name="AUTOSTART" value="TRUE">');
	  d.writeln('    		<param name="CONTROLS" value="ImageWindow">');
	  d.writeln('    		<param name="NOLABELS" value="TRUE">');
	  d.writeln('    		<param name="CONSOLE" value="one">');
	  d.writeln('    		<embed type="audio/x-pn-realaudio-plugin" ');
	  d.writeln('				src="'+movieURL+'" ');
	  d.writeln('				name=player width='+width+' height='+height+' autostart=true controls=ImageWindow console=one nolabels=true>');
	  d.writeln('    		</embed> ');
	  d.writeln('  		</object>');
	  d.writeln('  		<object id=realControls width='+width+' height=30 classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">');
	  d.writeln('    		<param name="CONTROLS" value="ControlPanel">');
	  d.writeln('    		<param name="AUTOSTART" value="TRUE">');
	  d.writeln('    		<param name="NOLABELS" value="TRUE">');
	  d.writeln('    		<param name="CONSOLE" value="one">');
	  d.writeln('    		<embed type="audio/x-pn-realaudio-plugin" ');
	  d.writeln('				src="'+movieURL+'" ');
	  d.writeln('				name=realControls width='+width+' height=30 controls=ControlPanel autostart=true console=one nolabels=true>');
	  d.writeln('    		</embed>');
	  d.writeln('  		</object>');
	  d.writeln('</div>');
	  d.writeln('');
	  d.writeln('</body>');
	  d.writeln('</html>');
}

function openQTPlayer(movieURL,winName,width,height) {
	  var finalHeight = parseInt(height) + 24;
	  var features = 'width=' + width + ',height=' + finalHeight;
	  var w = window.open('',winName,features);
	  var d = w.document; //Use this variable to save typing
	  //Output the page
	  d.writeln('<html>');
	  d.writeln('<head>');
	  d.writeln('<title>National Security - In theaters January 17, 2003 - Sony Pictures Entertainment</title>');
	  d.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	  d.writeln('</head>');
	  d.writeln('');
	  d.writeln('<body bgcolor=#000000 text="#FFFFFF" link="#CC3300" vlink="#CC3300" alink="#CC3300" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	  d.writeln('<div align="center">');
	  d.writeln('		  <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  WIDTH="'+width+'" HEIGHT="'+finalHeight+'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
	  d.writeln('		  <PARAM NAME="src" VALUE="'+movieURL+'">');
	  d.writeln('		  <PARAM NAME="controller" VALUE="true">');
	  d.writeln('		  <PARAM NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/indext.html">');
	  d.writeln('		  <EMBED WIDTH="'+width+'" HEIGHT="'+finalHeight+'" CONTROLLER="true" SRC="'+movieURL+'" BGCOLOR="000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED>		');
	  d.writeln('		  </OBJECT>');
	  d.writeln('</div>');
	  d.writeln('');
	  d.writeln('</body>');
	  d.writeln('</html>');
	  d.writeln('	  ');
}

//-->

