function doPopup(image, caption, page) {
	if (page == "construction") {
		popup = window.open("","imagepopup","width=396,height=324,scrollbars=yes,resizable=yes");
		popup.document.write('<html><head><title>' + page + ' popup</title>');
		popup.document.write('<link rel="stylesheet" type="text/css" href="css/popup.css" media="screen">');
		popup.document.write('</head><body onblur="this.close()">');
		popup.document.write('<div align="center">');
		popup.document.write('<img src="images/constimages/' + image + '" alt="' + caption + '" width="396" height="252" border="0">');
		popup.document.write('<p class="copy">' + caption + '</p>');
		popup.document.write('</div>');
		popup.document.write('</body></html>');
		popup.document.close();
	}
	
	if (page == "more") {
		popup = window.open("","imagepopup","width=396,height=360,scrollbars=yes,resizable=yes");
		popup.document.write('<html><head><title>' + page + ' popup</title>');
		popup.document.write('<link rel="stylesheet" type="text/css" href="css/popup.css" media="screen">');
		popup.document.write('</head><body onblur="this.close()">');
		popup.document.write('<p>&nbsp;</p>');
		popup.document.write('<p class="copy">' + caption + '</p>');
		popup.document.write('</body></html>');
		popup.document.close();
	}
	
	if (page == "drawings") {
		popup = window.open("","imagepopup","width=576,height=494,scrollbars=yes,resizable=yes");
		popup.document.write('<html><head><title>' + page + ' popup</title>');
		popup.document.write('<link rel="stylesheet" type="text/css" href="css/popup.css" media="screen">');
		popup.document.write('</head><body onblur="this.close()">');
		popup.document.write('<div align="center">');
		popup.document.write('<img src="images/' + image + '" alt="' + caption + '" width="576" height="458" border="0">');
		popup.document.write('<p class="copy">' + caption + '</p>');
		popup.document.write('</div>');
		popup.document.write('</body></html>');
		popup.document.close();
	}
	
	if (page == "bar") {
		popup = window.open("","imagepopup","width=396,height=288,scrollbars=yes,resizable=yes");
		popup.document.write('<html><head><title>' + page + ' popup</title>');
		popup.document.write('<link rel="stylesheet" type="text/css" href="css/popupgrill.css" media="screen">');
		popup.document.write('</head><body onblur="this.close()">');
		popup.document.write('<p class="heading">The Grill at Timber Pointe</p>');
		popup.document.write('<p class="copy">The Grill offers a wide variety of beverages and great food. Big screen televisions with surround sound add to the exciting atmosphere. An outdoor patio provides a panoramic view of the golf course and countryside. A beautifally landscaped outdoor pavilion is available for large outings and special events.</p>');
		popup.document.write('<p class="copy">The Grill is open to the public. You\'ll enjoy the food and the quick and affordable service.</p>');
		popup.document.write('</body></html>');
		popup.document.close();
	}
	
	if (page == "map") {
		popup = window.open("","imagepopup","width=596,height=765,scrollbars=yes,resizable=yes");
		popup.document.write('<html><head><title>' + page + ' popup</title>');
		popup.document.write('<link rel="stylesheet" type="text/css" href="css/popup.css" media="screen">');
		popup.document.write('</head><body onblur="this.close()">');
		popup.document.write('<img src="images/' + image + '" alt="' + caption + '" width="576" height="745" border="0">');
		popup.document.write('<p class="copy">' + caption + '</p>');
		popup.document.write('</body></html>');
		popup.document.close();
	}
	
	if (page == "coursemap") {
		window.open("/golf/proto/golfthepointe/course/coursemap_tan.html","coursemap","width=720,height=425");
	}
	
	if (page == "gallery") {
		popup = window.open("gallery.html","gallery","width=360,height=216");
	}
	
	if (page == "patio") {
		popup = window.open("patio.html","patio","width=360,height=216");
	}
	
	if (page == "playing") {
		popup = window.open("playing.html","playing","width=360,height=216");
	}
	
	if (page == "keydates") {
		window.open("keydates.html","datepopup","width=576,height=720,scrollbars=yes,resizable=yes");
	}
}