// Abrir pop-up do centralizado
var win = null;
function popup(pagina,nome,w,h){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no'
	win = window.open(pagina,nome,settings)
}

function AbreJanela(arquivo, tamx, tamy)
//onde arquivo é html popUp, tamx é o tamanho horizontal em pixels e tamy tamanho vertical em pixels
{
window.open(arquivo,"","resizable=no,toolbar=no,status=no,menubar=no,scrollbars=yes,width=" + tamx + ",height=" + tamy)
}
