function showRoom(roomName,imageName) {
	theWin = window.open( "roomName", "imageName", "width=540,height=500,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 == "Live Room") { 
		roomCopy = "...as seen from the entryway of iso 2.";
	}
	if (roomName == "Iso 1") { 
		roomCopy = "...looking in from the live room.";
	}
	if (roomName == "Iso 2") { 
		roomCopy = "...looking into the control room.";
	}
	if (roomName == "Control Room") { 
		roomCopy = "...looking into the live room and iso 1";
	}
	if (roomName == "Pouring the studio foundation.") { 
		roomCopy = "Put random comments here...";
	}
	if (roomName == "Framing the studio.") { 
		roomCopy = "Put new lyrics to \"The Way You Look Tonight\" here...";
	}
	if (roomName == "Iso 1 floor.") { 
		roomCopy = "Construction of ISO 1 (drum booth) floor<br>showing floor isolation technology.";
	}
	theWin.document.write('<SCRIPT>function CloseIt( ) { ShutIt=window.close(); }</SCRIPT>');
	theWin.document.write('<BODY BGCOLOR=\"#EF,ED,DE\" 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><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();
} 

