/**
 * @author Hilton Gonçalves (hilton.goncalves@yahoo.com.br)
 * @copyright 2008
 */
function getTamanho() {
	if (window.innerHeight){		
		//navegadores baseados em mozilla
		_w = window.innerWidth 
		_h = window.innerHeight
	}
	else{
		if (document.body.clientHeight){
			//Navegadores baseados em IExplorer, pois nao tem innerheight
			_w = document.body.clientWidth
			_h = document.body.clientHeight
		}else{
			//outros navegadores
			_w = 1024
			_h = 520
		}
	} 
	//return "X: " + _w + " e Y: " + _h;	
	return _w + "," + _h;	
}

function resizeDivs(){
	//alert(getTamanho());
	_div = getTamanho().split(",");
	//alert(_div[0] + " - " + _div[1]); 
	//document.getElementById('menucontent').style.height = "30px";
	//document.getElementById('signaturecontent').style.height = "15px";
	
	if (document.all)
		document.getElementById('flashcontent').style.height = (_div[1] - 57) + "px";
	else
		document.getElementById('flashcontent').style.height = (_div[1] - 79) + "px";
	
}