function autofitIframe(id,height){ // v.1.0
	if(height < 35)		height = 405;
		//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";
			if(id=="a01")	parent.parent.document.getElementById("datamain").style.height= (height)+"px";
			
		}
		else if(document.getElementById) {
			parent.document.getElementById(id).style.height=height+"px";
			
			if(id=="a01")	parent.parent.document.getElementById("datamain").style.height= (height)+"px";
		}
/*		parent.document.getElementById("barra").style.height= (height - 35)+"px";*/
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

