﻿function abreUnidade(unidade){
	abreJanelaUnidade("/novo/unidades/" + unidade + ".htm", "unidade", 640, 580, 40, 1);
}

function abreJanelaUnidade(URL, nome, largura, altura, yOffSet, scroll)
{
	var posX = parseInt((screen.width - largura)/2);
	
	var win = window.open(URL, nome, "scrollbars=0,status=0,width=" + largura + ",height=" + altura + ",left= " + posX  + ",top=" + yOffSet + ",scrollbars=" + scroll + ",resizable=0,");
	return win;
}


