//---------------------------------------------------------------------//
function openPopup(ventana,w,h){
	var w = (w)? w : 600;
	var h = (h)? h : 600;
//	LeftPosition = (screen.width) ? (screen.width - w)/2 : 200;
//	TopPosition = (screen.height) ? (screen.height-h)/2 : 150;
	w = w + 16;
	h = 0;
	window.open(ventana,'','width='+w+',height='+h+',resizable=no, scrollbars=no, status=yes,titlebar=yes,location=no,menubar=no,directories=no,copyhistory=no');
}

//---------------------------------------------------------------------//
function openPopupObs(ventana){
	var w = 360;
	var h = 400;
	window.open(ventana,'','width='+w+',height='+h+',resizable=no, scrollbars=yes, status=yes,titlebar=no,location=no,menubar=no,directories=no,copyhistory=no');
}

//---------------------------------------------------------------------//

//---------------------------------------------------------------------//
function openPopupCentro(ventana,w,h){
	var w = (w)? w : 585;
	var h = (h)? h : 400;
	window.open(ventana,'','width='+w+',height='+h+',resizable=no, scrollbars=no, status=yes,titlebar=yes,location=no,menubar=no,directories=no,copyhistory=no');
}

function cerrarVentana(){
	window.close();
}


function Abrir_ventana_visita_virtual_predio (pagina) {
var
opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=791,height=549,top=85,left=170";
window.open(pagina,"",opciones);
}