function movie_play(asxfile)
{
doc =	'<OBJECT ID="MediaPlayer1" WIDTH="384" HEIGHT="261" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"'
	+'CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"'
	+'standby="Loading MicrosoftR WindowsR Media Player components..."'
	+'type="application/x-oleobject">'
	+'<PARAM NAME="AutoStart" VALUE="True">'
	+'<PARAM NAME="ShowControls" VALUE="True">'
	+'<PARAM NAME="ShowStatusBar" VALUE="False">'
	+'<param name="ShowPositionControls" value="false">'
	+'<PARAM NAME="FileName" VALUE="'+asxfile+'">'
	+'<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="'+asxfile+'" name="MediaPlayer1" autostart=1 width=384 height=261 showcontrols=1 ShowStatusBar=0 ShowPositionControls=0>'
	+'</EMBED></OBJECT>';
	document.write(doc);
	return;
}

function rate_set(rate,movieurl)
{
	document.cookie = "rate="+rate+"; path=/";
	if(movieurl != null){document.getElementById("movieWin").src = movieurl+'?'+rate;}
}
