
// this script is for home page only

function gotoLink(cnl){
	if (cnl=='latin') return; // <-- inactive at the moment
	document.location.href = "/"+cnl;
}

function buildHomeFlash(){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('	codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
	document.write('	width="1000" height="200" id="homeStrip" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="/_media/flash/home_page3.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<embed src="/_media/flash/home_page3.swf" quality="high" bgcolor="#ffffff" width="1000" height="200" name="homeStrip" align="middle" ');
	document.write('	allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ');
	document.write('	pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" menu="false" />');
	document.write('</object>');
}

function showFlashDemo(){
	window.open("/homedemo","demoWin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+screen.width+",height="+screen.height+",top=0,left=0");
}

