// JavaScript Document
function showFloorPlan(fp) {
	//alert(fp);
	var floorPlan = "fp_" + fp + ".asp";
	window.open(floorPlan,'Floor Plan','width=780,height=700');
	}
function changeCursor() {
	 document.body.style.cursor = 'pointer';
	}
function clearCursor() {
	document.body.style.cursor = 'default';
	}