// Detecta pop-UP
function fnDetectaPopUp(Alvo,UrlPop){
	var DialogWidth  = 306;
	var DialogHeight = 340;
	posY=window.screen.height/2-(DialogHeight/2);
	posX=window.screen.width/2-(DialogWidth/2);		
	if(window.showModalDialog(UrlPop,'TestePop','dialogHeight:' + DialogHeight + 'px; dialogWidth:' + DialogWidth + 'px; dialogTop:'+ posY +'px;dialogLeft:'+ posX +'px;edge Raised;center:Yes;help:No;resizable:No;scroll:No;status:No;unadorned:Not;')){	
		document.getElementById(Alvo).innerHTML="";
		return true;
	}else{
		document.getElementById(Alvo).innerHTML="Bloqueador de Pop-Up ativo. <br> para continuar &eacute; necess&aacute;rio desabilitar o bloqueador <br>e clicar no botão recarregar!";
		return false;
	}	
}

