imgArray = new Array();

function preloadImage(imgURL) {
	imgArray[imgArray.length] = new Image;
	imgArray[imgArray.length - 1].src = imgURL;
	}

function viewPhoto(furl,nm) {
	msgWindow=top.open("","","resizable,width=620,height=480");
	msgWindow.document.write      ("<HEAD><TITLE>" + nm + "</TITLE></HEAD>");
	msgWindow.document.write      ('<BODY bgcolor=#fcfafb><a href=javascript:window.close();><img src=' + furl + ' border=0></a></BODY>');
	msgWindow.focus();
	return void(0);
}
function viewFloorPlan(furl,nm) {
	msgWindow=top.open("","","resizable,width=600,height=740");
	msgWindow.document.write      ("<HEAD><TITLE>" + nm + "</TITLE></HEAD>");
	msgWindow.document.write      ('<BODY bgcolor=#fcfafb><a href=javascript:window.close();><img src=' + furl + ' border=0></a></BODY>');
	msgWindow.focus();
	return void(0);
}
