// JavaScript Document
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

//added by aska 0508 to help firefox transparent click-through issue
function resizeSWF(h){
		//var targ=document.getElementsByName('xmlmenu').item(0);
		//targ.style.height=h+'px';
		//alert(targ.style.height);
		if(isIE){
		var targ=document.getElementsByName('xmlmenu');
		targ[0].style.height=h+'px';
		}else{
		document.getElementById("flashContent").style.height=h+'px'; 
		}
}