// JavaScript Document

function videoPopup( divId ){
	document.getElementById(divId).innerHTML = "<div id=\"promo_video_style\" style=\"width:500px;\"><object width=\"500\" height=\"405\"><param name=\"movie\" value=\"http://www.youtube.com/v/HgmYj3mXGqw&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1&rel=0&autoplay=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/HgmYj3mXGqw&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1&rel=0&autoplay=1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"500\" height=\"405\"></embed></object><a class=\"closebox\" onclick=\"closeIt('promo_video_hold'); closeItOnly('promo_video'); return false;\" href=\"#\">close [x]</a></div>";
}

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

function closeItOnly ( theOnly ){
	document.getElementById(theOnly).style.display = 'none';
}

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




