// JavaScript Document

/* FUnctions to control media files - Video, Sound, etc. */
function play(media, w, h)
{
    document.getElementById('MediaPlayer').style.display = "block";
    var margLeft = (500 - w) / 2; 
    var margTop  = (400 - h) / 2; 
    
    object_style = "margin-left: "+margLeft+"px; margin-top: "+margTop+"px;"; 
     
    document.getElementById('MediaPlayer').innerHTML=
    '<a href="#" onClick="close_media()" class="closePopup"><img src="images/close-popup.gif"></a>'
    +'<object style="'+object_style+'" classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Loading Microsoft Windows Media Player components..." '
    +'type="application/x-oleobject" width="'+w+'" height="'+h+'"><param name="fileName" value="'+media+'">'
    +'<embed type="application/x-mplayer2" src="'+media+'" width="'+w+'" height="'+h+'"><\/embed><\/object>'

}

function close_media()
{
    document.getElementById('MediaPlayer').style.display = "none";
}
/******************************************************************************/