// JavaScript Document

function videoPopup( divId ){
	document.getElementById(divId).innerHTML = "<div style=\"text-align: center; padding: 40px;\"><a href=\"#\" class=\"closebox\" onclick=\"closeIt('"+divId+"'); return false;\">X close</a><OBJECT id=\"video\" width=\"320\" height=\"196\" CLASSID=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" type=\"application/x-oleobject\"> <PARAM NAME=\"URL\" VALUE=\"videos/bahowo-lodge.wmv\"> <PARAM NAME=\"SendPlayStateChangeEvents\" VALUE=\"True\"> <PARAM NAME=\"AutoStart\" VALUE=\"True\"> <PARAM name=\"uiMode\" value=\"none\"> <PARAM name=\"PlayCount\" value=\"9999\"> <embed src=\"videos/bahowo-lodge.wmv\" name=\"player\" width=\"320\" height=\"196\" type=\"video/x-ms-wmv-plugin\" pluginurl=\"http://www.microsoft.com/windows/windowsmedia\" allowchangedisplaysize=\"0\" autosize=\"0\" displaysize=\"1\" showcontrols=\"0\" showstatusbar=\"0\" autorewind=\"1\" autostart=\"1\"> </embed> </OBJECT></div>";
}

function closeIt ( theClose ){
	document.getElementById(theClose).style.display = 'none';
	document.getElementById(theClose).innerHTML = "&nbsp;";
}

function showIt ( theShow ){
	document.getElementById(theShow).style.display = 'block';
}