function display_painting(x,y)
{

var newWindow2 = window.open("", "Paintings", "resizable,width='100%',height='100%',scrollbars=yes")
var newtitle;

if (y.substr(18,4)=="8085") newtitle = "Steve Hawley, Paintings from 1980 - 1985";
if (y.substr(18,4)=="8690") newtitle = "Steve Hawley, Paintings from 1986 - 1990";
if (y.substr(18,4)=="9195") newtitle = "Steve Hawley, Paintings from 1991 - 1995";
if (y.substr(18,4)=="9600") newtitle = "Steve Hawley, Paintings from 1996 - 2000";
if (y.substr(18,4)=="0103") newtitle = "Steve Hawley, Paintings from 2001 - 2003";
newWindow2.document.write("<HTML><HEAD><TITLE>");
newWindow2.document.write(newtitle);
newWindow2.document.write("</TITLE>");
// newWindow2.document.write("<SCRIPT LANGUAGE='JavaScript' SRC='javascript/get_settings.js'></script>");  

newWindow2.document.write("</HEAD><body bgcolor='#91A49D' link='#91A49D' alink='#91A49D' vlink='#91A49D'>");
newWindow2.document.write("<Font color='#62485B' face='times new roman'><center>");
newWindow2.document.write("<table width=100%>");

newWindow2.document.write("<TR><TD align=left valign='top'>");
newWindow2.document.write("&nbsp;&nbsp;&nbsp;&nbsp;<a href=# onclick='self.close()'>");
newWindow2.document.write("<img src='images/Back.gif'></a>");
newWindow2.document.write("</td></TR>");

newWindow2.document.write("<TR><TD align='center' valign='bottom'><img src=" + y + "><BR><img src=" + x + "></TD>");
newWindow2.document.write("</TR></TABLE>");
newWindow2.document.write("<br>");


newWindow2.document.write("</font>");
newWindow2.document.write("</BODY></HTML>");

newWindow2.document.close()
newWindow2.document.bgColor = "#91A49D"
newWindow2.document.fgColor = "#62485B"

}  