WMP=new Object();

function body_onload() {
        WMP=document.getElementById("Player");
}

function startPlayer() {
        WMP.controls.Play();
}

function stopPlayer() {
        WMP.controls.Stop();
}

function pausePlayer() {
        WMP.controls.Pause();
} 


function CreateControl(filename) {


document.write('	standby="Loading Microsoft Windows® Media Player components..."');
document.write('	type="application/x-oleobject" width="172" height="123">');
document.write('	<param name="URL" value="'+filename+'">');
document.write('	<param name="animationatStart" value="true">');
document.write('	<param name="transparentatStart" value="true">');
document.write('	<param name="autoStart" value="FALSE">');
document.write('	<param name="showControls" value="true">');
document.write('	<param name="enabled" value="true">');
document.write('	<param name = "uiMode" value = "none">');
document.write('	<embed type="application/x-mplayer2"');
document.write('		pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"');
document.write('		src="'+filename+'" width="172" height="123"');
document.write('		autostart="1" showcontrols="1"></embed>');


}

function CreateControlMoz(filename) {


document.write('	standby="Loading Microsoft Windows® Media Player components..."');
document.write('	type="application/x-oleobject" width="320" height="240">');
document.write('	<param name="URL" value="'+filename+'">');
document.write('	<param name="animationatStart" value="true">');
document.write('	<param name="transparentatStart" value="true">');
document.write('	<param name="autoStart" value="FALSE">');
document.write('	<param name="showControls" value="true">');
document.write('	<param name="enabled" value="true">');
document.write('	<param name = "uiMode" value = "none">');
document.write('	<embed type="application/x-mplayer2"');
document.write('		pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"');
document.write('		src="'+filename+'" width="320" height="240"');
document.write('		autostart="1" showcontrols="0"></embed>');


}
