<!--
if(navigator.userAgent.indexOf('MSIE',0) != -1){var isIE = true;}
else {var isIE = false;}

function ShowMap(imgnumber){
	if (typeof(wind) == "object"){
		if (isIE) {wind.close();}
		else {wind.close;}
	}
	
	wind = window.open("","", "left=140,top=0,width=640,height=680,resizable=no,scrollbars=1");
	wind.document.writeln ("<html><head><title>Plan</title></head><body><div align='center'><img name='viewimage' src='/images/apt/flat-plans/Flat" + imgnumber + ".gif' border='0' align='top'>")
	wind.document.writeln ("<br><br><form><input type='button' onclick='self.close();' value='close' style='width:160; font-family:Verdana; font-weight:bold; background-color:#FFCC66'></form></div></body></html>")
	wind.document.close;
	wind.focus();
}
//-->
