
function moviePlay(option,url)
{	
		player = "<OBJECT id='Player33' standby='Loading Windows Media Player components...' classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6 VIEWASTEXT height='238' width='257'>";

	if (option != 'full')
	{
		player = player + "<PARAM name='url' value='"+ url +"'/>";
	}
	else
	{
		url = document.form.movie_url.value;

		player = player + "<PARAM name='url' value='"+ url +"'/>";
		player = player + "<PARAM NAME='fullScreen' VALUE='true'>";          
	}
		player = player + "<PARAM name='autostart' value='true'/>";
		player = player + "<PARAM name='enablecontextmenu' value='0'/></object>";
		movieView.innerHTML = player;
	
		document.form.movie_url.value = url;
}