function openwin(url,title)
{
 win1 = open(url, "_blank","toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,top=0,left=0,width="+screen.width+",height="+(screen.height-0.1*screen.height)+"");
}

function openwin2(url,title)
{
 win1 = open("", "_blank","toolbar=1,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,top=0,left=0,width="+screen.width+",height="+(screen.height-0.1*screen.height)+"");
 win1.document.open();
 win1.document.write("<html><head><title>"+title+"</title>");
 win1.document.write("<script src='http://figureinform.com/js/blockImage.js'></script></head>");
 win1.document.write("<body id='bdy' topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 bgcolor=#000000'>");
 win1.document.write("<table width='100%' height='100%' border=0 cellspacing=0 cellpadding=0><tr><td align='center'><table border=0 cellspacing=0 cellpadding=0><tr><td align=center bgcolor='#97937A'><table border=0 cellspacing=1 cellpadding=0><tr><td bgcolor='#000000'><img src="+url+ " border=0></td></tr></table></td></tr><tr><td bgcolor='000000'><table width=100% border=0 cellspacing=5 cellpadding=0><tr><td align=center><a href=javascript:window.close();><img src=images/close_window.gif width=102 height=23 border=0></a></td></tr></table></td></tr></table></td></tr></table>");
 win1.document.write("<script>init();</script></body></html>\n");
}

