
// Função Indique Amigo

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

// Pop up

function fnImagemPopUp( titulo , largura , altura , imagem , alt )
{
		var janela ;
		janela = window.open("",titulo,"width="+largura+",height="+altura+",scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,left=300,top=300'");
		janela.document.write('<html><head><title>'+titulo+'</title></head>');
		janela.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
		janela.document.write('<img src="'+ imagem + '" alt="' + alt + '" border="0" usemap="#Map"> ');
		janela.document.write('<map name="Map"><area shape="rect" coords="190,6,248,26" href="javascript:window.close();"></map>');
		janela.document.write('</body></html>');

} 
