function getWindowHeight()
{
	var myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myHeight = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myHeight = document.body.clientHeight;
	}
	return myHeight;
}

function getWindowWidth() {
	var myWidth = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
	}
	return myWidth;
}

function VerificaTamanhoJanela()
{
	var div = document.getElementsByTagName("div");
	for(var i = 0 ; i < div.length ; i++)
	{
		if(div[i].className == "cLumPage" || div[i].className == "cLumPageNada" || div[i].className == "cLumPageSoHeight" || div[i].className == "cLumPageSoWidth")
		{
			var height = getWindowHeight();
			var width = getWindowWidth();
			if (height < 488) // tamanho do div
				if(width < 773) // tamanho do div
					div[i].className = "cLumPageNada";
				else
					div[i].className = "cLumPageSoWidth";
			else
				if(width < 773)
					div[i].className = "cLumPageSoHeight";
				else
					div[i].className = "cLumPage";
			/*
			div[i].className = "";
			div[i].style.display = "";
			div[i].style.position = "absolute";
			var height = "488"
			div[i].style.marginTop = (height / 2) * -1
			div[i].style.top = "50%";
			div[i].style.width = "773px"
			var width = div[i].offsetWidth
			div[i].style.marginLeft = (width / 2) * -1
			div[i].style.left = "50%";
			*/
			//height:488; margin-top:-244px; top:50%; position:absolute; width:779px; left: 50%; margin-left:-389px;
		}
	}
}
