// JavaScript Document

function popup(url) {
	//pega a resolução do visitante
	w = screen.width;
	h = screen.height;
	altura = "400";
	largura = "530";
	
	meio_w = w/2;
	meio_h = h/2;
	
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;
	
	window.open(url,'','height=' + altura + ', width=' + largura + ', top='+meio1+', left='+meio2+''); 
}

function popupNew(url, altura, largura) {
	//pega a resolução do visitante
	w = screen.width;
	h = screen.height;
	
	meio_w = w/2;
	meio_h = h/2;
	
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;
	
	window.open(url,'','height=' + altura + ', width=' + largura + ', top='+meio1+', left='+meio2+''); 
}

function abrirPopup(url, x, y) {
	w = screen.width;
	h = screen.height;
	largura = x;
	altura = y;
	
	meio_w = w/2;
	meio_h = h/2;
	
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;
	janela=window.open('', 'abrirPopup', 'fullscreen=0,location=0,directories=0,menubar=0,toolbar=0,status=0,resizable=1,scrollbars=0, width='+x+', height='+y+', top='+meio1+', left='+meio2+''); 
	janela.document.write('<html><head><title>'+url+'</title></head>');
	janela.document.write('<body style="margin: 0;">');
	janela.document.write('<a href="javascript: parent.self.close();"><img src="images/'+url+'" border="0" alt="Clique para fechar." title="Clique para fechar."></a></body></html>');
	janela.document.close();
	janela.focus();
}