﻿// JScript File

function popup2(form, name, width, height, scrolls, resize)
{
        var hWindow;
		var iLeft, iTop;
		iLeft = (screen.width - width)/2;
	    iTop  = ((screen.height - height)/2)-20;	
							
		hWindow = window.open(form, name, "width="+width+",height="+height+",scrollbars="+scrolls+",resizable="+resize+",screenX="+iLeft+",left="+iLeft+",screenY="+iTop+",top="+iTop);
}
function popUp(URL) {
day = new Date();
id = day.getTime();
var hWindow;
var iLeft, iTop;
iLeft = (screen.width - 690)/2;
iTop  = ((screen.height - 500)/2)-20;	
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=690,height=500');");
}
 function Locate(ventana){
      // parent.document.location.href="ListDetalleInmueble.aspx?id="+id;
      parent.document.location.href=ventana
       //  window.location.href=ventana;
      }