function initBody(){
	;
}

function abrirJanela(url,nome,w,h,conf) {  //abre uma janela  conf = toolbar,location,status,menubar,scrollbars,resizable
	//alert("");
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	novajanela=window.open(url,nome,'width='+w+',height='+h+',left='+winl+',top='+wint+','+conf);
	novajanela.resizeTo(w+10,h+80);
	novajanela.moveTo(winl,wint);
	novajanela.window.focus();
}//fim function abrirJanela(url,nome,w,h,conf)

function exibeFlash(swf, width, height){
		monta_swf = "";
		monta_swf += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+ width +"\" height=\""+ height +"\" title=\"\">";
		monta_swf += "<param name=\"movie\" value=\""+ swf +"\" />";
		monta_swf += "<param name=\"quality\" value=\"high\" />";
		monta_swf += "<param name=\"menu\" value=\"0\" />";
		monta_swf += "<param name=\"wmode\" value=\"transparent\" />";
		monta_swf += "<embed src=\""+ swf +"\" quality=\"high\" wmode=\"transparent\"  type=\"application/x-shockwave-flash\" width=\""+ width +"\" height=\""+ height +"\"></embed>";
		monta_swf += "</object>";	
		document.write(monta_swf);
}
function closeFloater(div){
	document.getElementById(div).style["display"]="none";
}