// JavaScript Document
function imgPopup(imgSrc, imgWidth, imgHeight, rootDir, scrollBars) {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - (imgWidth / 2);
		topPos = (screen.height / 2) - (imgHeight / 2);
	}
	if (rootDir == "true") {
		dirPrefix = "";
	} else {
		dirPrefix = "../";
	}
	var newWindow = window.open('','','location=0,status=0,scrollbars=1,width=' + imgWidth + ',height=' + imgHeight + ',left=' + leftPos + ',top=' + topPos);
	newWindow.document.write('<html><head>');
	newWindow.document.write('<link rel="stylesheet" href="' + dirPrefix + '_styles.css" />');
	if (scrollBars != "yes") {
		newWindow.document.write('<style type="text/css">');
		newWindow.document.write('<!--');
		newWindow.document.write('html,body { overflow-y: hidden ! important; overflow-x: hidden ! important; }');
		newWindow.document.write('-->');
		newWindow.document.write('</style>');
	}
	newWindow.document.write('<p><img src="' + imgSrc + '" /></p>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
}

function checkAddress() {
	if ((window.location.hostname == "www.universalloft.com") || (window.location.hostname == "universalloft.com")) {
		window.location.hostname = "www.universallofts.com";
	}
}

function planPopup(planChoice) {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - 200;
		topPos = (screen.height / 2) - 250;
	}
	var newWindow = window.open('','','location=0,status=0,scrollbars=0,width=400,height=500,left=' + leftPos + ',top=' + topPos);
	newWindow.document.write('<html><head>');
	newWindow.document.write('<link rel="stylesheet" href="_styles.css" />');
	newWindow.document.write('</head><body>');
	newWindow.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="500">');
    newWindow.document.write('<param name="movie" value="_swf/floorplans.swf?planChoice=' + planChoice + '">');
    newWindow.document.write('<param name="quality" value="high">');
    newWindow.document.write('<embed src="_swf/floorplans.swf?planChoice=' + planChoice + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="500">');
	newWindow.document.write('</embed>');
	newWindow.document.write('</object>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
}