// JavaScript Document
status = "Adele's Real Estate";

function loadPopup(url,width,height,scr){
	var pageCenter = (screen.width /2) - (width / 2);  // Horizonatlly centers the popup
	var pageMiddle = (screen.height /2) - (height / 2);  // Vertically centers the popup
	var properties = "left=" + pageCenter + ",top=" + pageMiddle + ",width=" + width + ",height=" + height + ",scrollbars=" + scr;
	window.open(url,'', properties);
}

function killWindow(){
	window.opener = self;
	window.close();
}