function testa_browser(){
	if ( document.all ) {  
		return true;
	} else if (document.getElementById){  
		alert('Este recurso só pode ser acessado pelo Internet Explorer');
		return false;
	} 
}

function AjustaTamanhoPadded(){					
	siderbarHeight = $("#sidebar").height();
	paddedHeight = $("#content .padded").height();
	if( paddedHeight < siderbarHeight-110 ){					
		$("#content .padded").css("height" , siderbarHeight -  110 );
	}
}

function fale_voip(){
	if(testa_browser() == true){
		window.open('phone/index.php','popup1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=380,height=420,left=0,top=0');
	}	
}