function showConstruction(roomName,imageName) {
	theWin = window.open( "roomName", "imageName", "width=475,height=450,location=no,menubar=no,resizable=no,scrollbars=yes,status=no");
	theWin.document.write('<html><head><title>Whip Records: ' + roomName + '</title>');
	theWin.document.write('<P ALIGN="CENTER"><img border="3" src=\"http://www.davidlandon.com/whiprecords/images/' + imageName + '\"><p>');
	if (roomName == "Pouring the studio foundation.") { 
		roomCopy = "";
	}
	if (roomName == "Framing the studio.") { 
		roomCopy = "";
	}
	if (roomName == "Iso 1 floor.") { 
		roomCopy = "Iso 1 floating floor construction.";
	}
	if (roomName == "Studio exterior.") { 
		roomCopy = "Construction of the studio exterior.";
	}
	if (roomName == "Live room sheetrocking.") { 
		roomCopy = "The live room being sheet rocked.";
	}
	if (roomName == "Booths.") { 
		roomCopy = "Booth sheetrocking detail.";
	}
	if (roomName == "Control room windows.") { 
		roomCopy = "Finishing the control room windows.";
	}
	if (roomName == "Loft framing.") { 
		roomCopy = "Detail of the loft framing<br>above the entry to the live room.";
	}
	theWin.document.write('<SCRIPT>function CloseIt( ) { ShutIt=window.close(); }</SCRIPT>');
	theWin.document.write('<BODY BGCOLOR=\"FFCC99\" BACKGROUND="">');
	theWin.document.write('<CENTER><FONT SIZE=\"-1\" COLOR=\"#000000\" FACE=\"Verdana\"><b>' + roomName + '</b></font></CENTER><P>');
	theWin.document.write('<FONT SIZE=\"-1\" COLOR=\"#000000\" FACE=\"Verdana\"><P ALIGN="CENTER">' + roomCopy + '</FONT><BR></P>');
	theWin.document.write('<form><center><input type="button" value="Close Window" onclick="CloseIt()"></form><p>');
	theWin.document.write('</body></html>');
	theWin.document.close();  
	
	if (navigator.appName.substring(0,8) == "Netscape") theWin.focus();
} 

