function openWindow(pageURL, windowWidth, windowHeight, showScrollbars, windowName)
{
	var windowPosX;
	var windowPosY;
	var newWindow;

	windowPosX=(screen.width-windowWidth)/2;
	windowPosY=(screen.height-windowHeight)/4;
	if (windowPosX<0) windowPosX=0;
	if (windowPosY<0) windowPosY=0;
	newWindow=window.open(pageURL, windowName, "toolbar=no,location=no,left=" + windowPosX + ",top=" + windowPosY + ",directories=no,status=no,menubar=no,scrollbars="+showScrollbars+",resizable=no,width=" + windowWidth + ",height=" + windowHeight);
	newWindow.focus();
}

/*
function printPage(pagePath)
{
	var windowWidth = 650;
	var windowHeight = (screen.height / 3 * 2);
	var windowPosX = ((screen.width - windowWidth) / 2);
	var windowPosY = ((screen.height - windowHeight) / 4);
	var newWindow;
	if (windowPosX<0) windowPosX=0;
	if (windowPosY<0) windowPosY=0;
	newWindow=window.open("/print/?" + pagePath, "realtyWarePrintPageWindow", "toolbar=0,location=0,left=" + windowPosX + ",top=" + windowPosY + ",directories=no,status=no,menubar=no,scrollbars=1,resizable=no,width=" + windowWidth + ",height=" + windowHeight);
	newWindow.focus();
}
*/

function cacheImages()
{
	if (document.images)
	{
		img1 = new Image(150, 25);
		img1.src = "/i/img/navigation-button-hover.gif";
		img2 = new Image(189, 64);
		img2.src = "/i/img/button-download-hover-189x64.png";
	}
}
