function showWMPMovie(videoURL, width, height) {
    try {
	if(navigator.mimeTypes) {
	    plugin = navigator.mimeTypes['application/x-mplayer2'].enabledPlugin;
	}
    } catch (oError) { }
    if (document.all || plugin) {
	document.write('<object data="'+videoURL+'" type="video/x-ms-wmv" width="'+width+'" height="'+height+'" style="border: 0px red solid;">'+
			'<param name="ShowStatusBar" value="1">'+
			'<param name="src" value="'+videoURL+'">'+
			'<param name="autostart" value="0">'+
			'<param name="volume" value="0">'+
			'</object>');
    } else {
	document.write("Your browser dose not support Windows Media Player plugin.");
    }
}

