function vScroll(){ if (navigator.appName=="Netscape") {  mW = window.innerWidth;  mH = window.innerHeight;      if(mW < 974){		document.getElementById("flash").style.width = 974 + "px";	}else{		document.getElementById("flash").style.width = "";	}		if(mH < 530){		document.getElementById("flash").style.height = 530 + "px";	}else{		document.getElementById("flash").style.height = "";		//alert("hello");		//document.getElementById("flash").style.min-height = 572 + "px";	}   } if (navigator.appName.indexOf("Microsoft")!=-1) {  mW = document.body.offsetWidth;  mH = document.body.offsetHeight;  //alert(mW);  //alert(mH);  if(mW < 1000){		document.getElementById("flash").style.width = 974 + "px";		//alert(mW);	}else{		document.getElementById("flash").style.width = "";	}		if(mH < 627){		document.getElementById("flash").style.height = 530 + "px";		//alert(mH);	}else{		document.getElementById("flash").style.height = 97 + "%";		//alert("hello");		//document.getElementById("flash").style.min-height = 572 + "px";	}   }	//alert("mW = " + mW + " " + "mH = " + mH);	var myTimer = setTimeout("vScroll()", 10);}