function setFlashHeight(divid, nHeight)
{ 
	if (parseInt(navigator.appVersion)>3) 
	{
 		if (navigator.appName=="Netscape") 
		{
			winW = window.innerWidth;
  			winH = window.innerHeight;
		}
 		if (navigator.appName.indexOf("Microsoft")!=-1) 
		{
  			winW = document.body.offsetWidth;
  			winH = document.body.offsetHeight;
		}
 	}

	oFlash = document.getElementById("website"); 

	if (nHeight.replace("px", "")<winH)
	{
		oFlash.height = "100%"; 
	}
	else
	{
		oFlash.height = nHeight;
	}	
     	
} 
function setFlashHeightFullScreen(divid)
{ 
     	oFlash = document.getElementById("website"); 
     	oFlash.height = "100%"; 
}