﻿// JScript File
function abrirMobilizador(pintID)
{
	var x = (screen.width - 240) / 2 ;       
	var y = ((screen.height - 255) / 2) - 5;  
	
	popUp = window.open('../Publico/consultarMobilizador.aspx?ID=' + pintID,'popup','resizable=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=500,height=350,left=' + x + ',top=' + y);
	popUp.focus();
	
}

function abrirChat(pstrID)
{
    var x = (screen.width - 850) / 2 ;       
    var y = ((screen.height - 660) / 2);
	
    popUp = window.open('../Restrito/participarChat.aspx?ID=' + pstrID,'popup','resizable=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=850,height=660,left=' + x + ',top=' + y);
    popUp.focus();
	
}

function abrirPortal(pstrURL)
{
    var x = (screen.width - 700) / 2 ;       
    var y = ((screen.height - 550) / 2);
	
    popUp = window.open(pstrURL,'popup','resizable=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=700,height=550,left=' + x + ',top=' + y);
    popUp.focus();
	
}

function abrirCandidato(pstrURL)
{
	var x = (screen.width - 600) / 2 ;
	var y = ((screen.height - 500) / 2) - 5;  
	
    popUp = window.open(pstrURL,'popup','resizable=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=600,height=500,left=' + x + ',top=' + y);
    popUp.focus();
	
}

function abrirRelatorio(pstrURL)
{
	var x = (screen.width - 790) / 2 ;
	var y = ((screen.height - 500) / 2) - 5;  
	
    popUp = window.open(pstrURL,'popup','resizable=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=790,height=500,left=' + x + ',top=' + y);
    popUp.focus();
	
}

function alterarEstilo(pstrObjeto,pstrClasse)
{

	var objDiv = document.getElementById(pstrObjeto);
	objDiv.className = pstrClasse;

}
