function open_window(path,windowName,msg)
{
var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=700,height=500,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=100,top=100");
newWindow.document.write("<HTML><HEAD><TITLE>Haines Chamber of Commerce</TITLE></HEAD>");


newWindow.document.write("<BODY BGCOLOR=FFFFFF>")
newWindow.document.write("<IMG SRC=" + path + ">");
newWindow.document.close();
newWindow.focus();
}