function open_window(path,windowName,msg)
{
var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=700,height=700,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=350,top=30");
newWindow.document.write("<HTML><HEAD><TITLE>Close Up of Art</TITLE><link rel=Stylesheet href=glass.css></HEAD>");

newWindow.document.write("<BODY BGCOLOR=000000><center><H1>Kathleen Sheard</H1><H2>" + msg + "</H2>")
newWindow.document.write("<IMG SRC=" + path + ">");
newWindow.document.write("<p>copyright 2008");
newWindow.document.close();
newWindow.focus();
}
