// JavaScript Document

function openWindow(url, name, features){
	window.open(url,name,features);
}


function floorPlanWin(url){
	windowprops = "left=50,top=50,width=600,height=600";
	
	text = "<html><head><title>Floor Plans</title></head><body style='margin: 0px' bgcolor='white'";
	text += "><center><img src='" + url + "'>";
	text += "</center></body></html>";
	
	preview = window.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);	
	preview.focus();
}

