//Conference JS document

function getWindowHeight() 
{
	/*if (navigator.appName == "Netscape") 
	{
		return window.innerHeight;
	} 
	else if (navigator.appName.indexOf("Microsoft") != -1) 
	{
		return document.documentElement.clientHeight-4;
	}
	return 460;*/
	return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}

function getWindowWidth()
{
	/*var winW = 630
	if (parseInt(navigator.appVersion)>3) 
	{
		if (navigator.appName=="Netscape") 
		{
			winW = window.innerWidth;
		}
		else if (navigator.appName.indexOf("Microsoft")!=-1) 
		{
			winW = document.body.offsetWidth;
		}
	}
	return winW;*/
	return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}

function getPageHeight() { 
	return (getWindowHeight()); 
}

function getPageWidth() { 
	//return (getWindowWidth() * 0.7);
	return (getWindowWidth());
}
	
function getFrameHeight() {
	return 750; 
}
 
 function getFrameWidth() {
	return (getPageWidth() * 0.8);
}



 