// JavaScript Document
function calcHeight(elemName)
{
	if(checkBrowserName('MSIE')){  
		  var the_height=document.getElementById(elemName).contentWindow.document.body.scrollHeight; 
	}else{
		var the_height=document.getElementById(elemName).contentWindow.document.body.offsetHeight;
	}
	
  	document.getElementById(elemName).style.height = the_height+"px";
	document.getElementById("left_fill").style.height = (the_height-30)+"px";
	
	window.location.hash="Lusthouse";
}

function calcHeight_temp(elemName)
{
	if(checkBrowserName('MSIE')){  
		  var the_height=document.getElementById(elemName).contentWindow.document.body.scrollHeight; 
	}else{
		var the_height=document.getElementById(elemName).contentWindow.document.body.offsetHeight;
	}
	
  	document.getElementById(elemName).style.height = the_height+"px";
	document.getElementById("left_fill").style.height = (the_height-30)+"px";
	
	alert ("resizeTo");
	alert (the_height);
	window.location.hash="Lusthouse";
}


function checkBrowserName(name)
{  
	var agent = navigator.userAgent.toLowerCase();
	if (agent.indexOf(name.toLowerCase())>-1) {  
		return true;  
	}else{
		return false;
	}
} 
