<!-- ACIONA ONLOAD
juntaronload(function(){
LinksExternos();
VarreFormulario("form_contato");
SelecionaMenu("menu","selecao","","s");
//iframeAutoHeight("orcamento");
},"")
//--> ACIONA ONLOAD

<!-- IFRAME
function iframeAutoHeight(id){
//if(window.document.getElementById(ide)){
//var id=window.document.getElementById(ide);
//by Micox - elmicox.blogspot.com - elmicox.com - webly.com.br 
if(navigator.appName.indexOf("Internet Explorer")>-1){//ie sucks
var func_temp=function(){
var val_temp=id.contentWindow.document.body.scrollHeight
id.style.height=val_temp + "px";
}
setTimeout(function(){func_temp()},100) //ie sucks
}else{
var val=id.contentWindow.document.body.parentNode.offsetHeight
id.style.height= val + 10 + "px";
}
}
//}
//--> IFRAME