/* $Id: functions.js,v 1.2 2003/12/19 03:39:47 chris Exp $ */

function pop(what) {

	var winWidth;
	var winHeight;
	var filename;
	var winTitle;

	if(what == '2bedroom') {
		winWidth = 550;
		winHeight = 528;
		filename = '2-bedroom-floorplan-big.jpg';
		winTitle = '2 Bedroom Floorplan';
	}
	else if(what == '3bedroom') {
		winWidth = 650;
		winHeight = 398;
		filename = '3-bedroom-floorplan-big.jpg';
		winTitle = '3 Bedroom Floorplan';
	}
	else if(what == '4bedroom') {
		winWidth = 650;
		winHeight = 398;
		filename = '4-bedroom-floorplan-big.jpg';
		winTitle = '4 Bedroom Floorplan';
	}
	else if(what == 'map') {
		winWidth = 650;
		winHeight = 535;
		filename = 'flaxmill-bay-location-enlarged.png';
		winTitle = 'Flaxmill Bay Location Map';
	}
	else if(what == 'siteplan') {
		winWidth = 650;
		winHeight = 437;
		filename = 'flaxmill-bay-siteplan.jpg';
		winTitle = 'Flaxmill Bay Site Plan';
	}

	popup = window.open('', '', 'top=0,left=0,width=' + winWidth + ',' + 'height=' + winHeight)
	popup.document.open();
	popup.document.writeln('<html>');
	popup.document.writeln('<head>');
	popup.document.writeln('<title>' + winTitle + '</title>');
	popup.document.writeln('</head>');
	popup.document.writeln('<body style="margin: 0px">');
	popup.document.writeln('<a href="javascript:window.close()"><img src="images/'+filename+'" width="'+winWidth+'" height="'+winHeight+'" alt="'+title+'" border="0" style="position:absolute; top:0px; left:0px; z-index:0;" /></a>');
	popup.document.writeln('<a href="javascript:window.close()"><img src="images/close-window.jpg" width="71" height="20" alt="Click to Close" border="0" style="position:absolute; top:0px; right:0px; z-index:1;" /></a>');
	popup.document.writeln('</body>');
	popup.document.writeln('</html>');
	popup.document.close();

}