function openwin(url, width, height, tit)
{
win1 = open("", "popunder", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,width="+width+",height="+height);

win1.document.open();
win1.document.write("<html><head><title>"+tit+"</title><link href=\"css/main.css\" rel=\"stylesheet\" type=\"text/css\"></head><body bgcolor=#9AB2D6 leftmargin=10 topmargin=10 marginwidth=10 marginheight=10>");

win1.document.write("<div class=black>");
win1.document.write(url);
win1.document.write("</div>");
win1.document.write("</body></html>");
win1.document.close();
}
