window.onload = function()
{
	floorPlanCalc();
}

function floorPlanCalc()
{
	var n = "";
	var Hrefstring = "";
	if (document.getElementById("PICTURE10") != null)
	{
		n= n + "10";
	}
	if (n.length!=0)
	{
		document.getElementById("floorplan").style.display = "block";
		mypage =  "http://www.dezrez.com/utilities/FloorPlan/popup2.asp?title=FloorPlans&pid=740206&agency=591&branch=961&width=700&rot=0&number=" + n + "&stylesheet=src=http://www.dezrez.com/drapp/estateagents/431/floorplanStyle.css";
		document.getElementById("floorplan").href = mypage;
	}
}

	function newWindow(url, width, height)
{
	window.open(url, 'propertydetails', 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes');
	return false;
}