
<!-- Begin
timeout = 0;


function Start(URL, WIDTH, HEIGHT, TITLE) {


text = "<html><head><title>" + TITLE + "</title></head><body bgcolor='white'";

if (timeout != 0)
{
   text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";
   HEIGHT = HEIGHT+78;
}
else
{
   HEIGHT = HEIGHT+50;
}
windowprops = "left=50,top=50,width=" + (WIDTH+50) + ",height=" + HEIGHT;

text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br><font color='#666600' face='verdana, arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>";

text += "<hr></center>";

text += "<p style='font-family: verdana; font-size: 10px; color: white; background-color: rgb(102, 102, 0); text-align: center;'>Copyright © 2005 North Star Energy Services, Inc.";

text += "</body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
-->