
PH15 = {};

function detalhes_imoveis(myurl) {
	var newWindow;
	var props = 'scrollBars=yes,resizable=yes,toolbar=no,statusbar=no,menubar=no,location=no,directories=no,width=700,height=440';
	newWindow = window.open(myurl, "Detalhes", props);
}

function ficha_imoveis(myurl) {
	var newWindow;
	var props = 'scrollBars=yes,resizable=no,toolbar=no,statusbar=no,menubar=no,location=no,directories=no,width=620,height=510';
	newWindow = window.open(myurl, "Detalhes", props);
}

function entradaTelefone(e) {
	var charCode = (e.which) ? e.which : e.keyCode
	if ( charCode == 32 ) return true;
	if ( charCode == 45 ) return true;
	if (charCode > 31 && charCode < 48 || charCode > 57 )
		return false;
	return true;
}

function selecionaImovelPop(id) {
	parent.opener.parent.mesa.location.href = 'mesa.php?add=' + id;
}

function JvMapaLocalizacao(coords) {
	var props = 'scrollBars=no,resizable=no,toolbar=no,statusbar=no,menubar=no,location=no,directories=no,width=640,height=480';
	var newWindow = window.open("mapa.php?c=" + coords, "GMap", props);
	newWindow.focus();
}

function JvMapaRegiao(cb) {
	var props = 'scrollBars=no,resizable=no,toolbar=no,statusbar=no,menubar=no,location=no,directories=no,width=640,height=480';
	var newWindow = window.open("mapa.php?cb=" + cb, "GMap", props);
	newWindow.focus();
}

function JvFolheto(rf) {	
	if(rf>0) ficha_imoveis('folheto.php?rf='+rf);
}

function JvPlanta(rf, i) {	
	ficha_imoveis('folheto.php?rf='+rf+'&op=p&i='+i);
}
