function doLoad() {
	var s1 = "<TITLE>Fórum da Liberdade</TITLE>" +    
	"<BODY topmargin=0 leftmargin=0 magin=0>";
	var s2 = "<IMG SRC='"+this.src+"'></BODY>"
	popup = window.open("","","height="+this.height+",width="+this.width+",toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0")  
	popup.document.write(s1+s2)
	popup.document.close()
}

function abrePopUp(IMAGE_PATH){
	var $width= (screen.width - 405)/2;
	var s1 = "<TITLE>Fórum da Liberdade</TITLE>" +    
	"<BODY topmargin=0 leftmargin=0 magin=0>";
	var s2 = "<IMG SRC='"+this.src+"'></BODY>"
	
	popup = window.open("html/patrocinio.html","Janela","location=0,status=0,scrollbars=0,toolbar=0,directories=0,menubar=0,resizable=0,width=405,height=95");  
	popup.moveTo($width,0);
	//popup.document.write(s1+s2);
}


function doError() {
alert("Arquivo " + this.src + " não encontrado")

}

var i
function LoadImage(src) {

i = new Image
i.onload = doLoad;
i.onerror = doError;
i.src = src
}


function openhelp( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
}

function MM_openBrWindow(theURL,winName) {
	
  var w = 600;
  var h = 400;
  
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;

  window.open(theURL,winName,'width='+w+',height='+h+',top='+wint+',left='+winl+'');
}

function novaJanela(URL,nome){
	
	var features = "resizable=1 scrollbars=yes";
	var janela   = window.open(URL,null,features,nome);
	
}