function open_window(path,windowName,msg)
{
var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=500,height=500,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=350,top=30");
newWindow.document.write("<HTML><HEAD><TITLE>Simpson, Tillinghast & Sorensen, P.C.: Attorneys at Law</TITLE></HEAD>");

newWindow.document.write("<BODY BGCOLOR=FFFFFF><H4>" + msg + "</H4>")
newWindow.document.write("<IMG SRC=" + path + ">");
newWindow.document.write("<BR><A HREF=mailto:counsel@stsl.com>Contact us</A>");
newWindow.document.close();
newWindow.focus();
}
