
function openmovie(x)
{
var w=window.open('', 'moviepopup', 'location=0, width=340, height=425');
w.document.write('<html><head><title>Janine Speaks!</title></head><body>');
w.document.write('<OBJECT ID="MediaPlayer3" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="320" height="400">');
 w.document.write('<PARAM NAME="URL" VALUE="'+x+'?embed">');
 w.document.write('<PARAM NAME="ClickToPlay" VALUE="TRUE">');
 w.document.write('<PARAM NAME="AutoStart" VALUE="TRUE">');
 w.document.write('<PARAM NAME="ShowControls" VALUE="TRUE">');
 w.document.write('<PARAM NAME="ShowDisplay" VALUE="TRUE">');
 w.document.write('<PARAM NAME="ShowStatusBar" VALUE="TRUE">');

 w.document.write('<embed TYPE="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" filename="'+x+'?embed" SRC="'+x+'?embed" Name=MediaPlayer3 ClickToPlay=1 AutoStart=1 ShowControls=1 ShowDisplay=1 ShowStatusBar=1 controls="PlayButton" width=320 height=400></embed>');
 w.document.write('</OBJECT>');
 w.document.write('</body></html>');	
 w.document.close();
 w.focus();	
 }