function newwindow(path,windowName,msg)
{
var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=900,height=700,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=350,top=30");
newWindow.document.write("<HTML><HEAD><TITLE>"+ msg + "</TITLE></HEAD>");

newWindow.document.write("<BODY BGCOLOR=#FFFFFF><div id=wrapper>");
newWindow.document.write("<H2>Alexandra Feit</H2>");
newWindow.document.write("<IMG SRC=" + path + ">");
newWindow.document.write("<p>" + msg + "</p>");
newWindow.document.write("<a href=javascript:window.close()>Close</a>");
newWindow.document.close();
newWindow.focus();
}



