function showPhoto(photoName,winName,winwidth,winheight) {
			var photoPath = ('propPhotos/' + photoName);
			var winsize = "'menubar=1,status=0,toolbar=0,scrollbars=1,resizeable=1,screenX=0,screenY=35,left=100,top=100,width=530,height=" + winheight + "'";
			var winpop = "<html>\n<head>\n";
			winpop += "<title>Grand Marais Hotel Company</title>";
			winpop += "</head>\n<body background='' bgcolor='#E4E4C1' LEFTMARGIN='0' RIGHTMARGIN='0' TOPMARGIN='5' BOTTOMMARGIN='0' MARGINHEIGHT='0' MARGINWIDTH='0'>\n";
			winpop += "<p align=center>"
			winpop += "<img src=" + photoPath + " BORDER=1 BORDERCOLOR=000000><br>"
			winpop += "<FONT FACE='Tahoma' SIZE='2' color='#666666'><B>" + winName + "\n</B><br><br>"
			winpop += "<a href='javascript: window.close();'>" // creates a close link on popup
			winpop += "close window</a>" + "</FONT>"
			winpop += "</body>\n</html>\n"
			winpopup = window.open ('','popup',winsize) // opens popup window
			winpopup.document.open() // start of popup window
			winpopup.document.write (winpop) // writes html in the page
			winpopup.document.close() // ends of popup window
			winpopup.focus() //brings popup window to the top.
		}
