function autofitIframe(id,height){ // v.1.0
	if(height < 35)		height = 405;
	if(height < 373)    height = 373;

		//copyright 2004 Eddie Traversa http://www.dhtmlnirvana.com/
		//if (!window.opera && !document.mimeType && document.all && document.getElementById){
		if (!window.opera && document.all && document.getElementById){
			parent.document.getElementById(id).style.height=height+"px";
			
		}
		else if(document.getElementById) {
			parent.document.getElementById(id).style.height=height+"px";
		}
/*		parent.document.getElementById("barra").style.height= (height - 35)+"px";*/
		if(parent.document.getElementById("barra")!=null)
			parent.document.getElementById("barra").style.height= (height - 32)+"px";
}

