// JavaScript Document

function videoPopup( divId ){
	document.getElementById(divId).innerHTML = "<div id=\"promo_video_style\" style=\"width:650px;\"><object width=\"640\" height=\"505\"><param name=\"movie\" value=\"http://www.youtube.com/v/SGD3GKsfBSM&hl=en&fs=1&hd=1&rel=0\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/SGD3GKsfBSM&hd=1&hl=en&fs=1&rel=0\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"640\" height=\"505\"></embed></object><a class=\"closebox\" onclick=\"closeIt('promo_video_hold'); closeItOnly('promo_video'); return false;\" href=\"#\"><img src=\"images/closelabel.gif\" width=\"66\" height=\"22\" /></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';
}




