// JavaScript Document
function popUpSeal(url)	{ 
	sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
} 

function popUpSealSize(url,h,w)  { 
	window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,status=0.resizable=0,width=' + w + ',height=' + h );
} 

function popUpTBT()  { 
	x = window.open("http://www.fead.br/banners/tbt.html","win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=515,height=704");
	x.moveTo(0,0);
} 

function toggle(e) 
{
	if (e.style.display == "none") {
		e.style.display = "";
	} else {
		e.style.display = "none";
	}
}