function openwin(url, width, height,tit)
{
win1 = open("", "_blank", "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></head><body bgcolor=#ffffff topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><img src="+url+" border=0></body></html>");
win1.document.close();
}

