function openwin(url, width, height)
{
 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>ViaCleaner</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><img src=http://viaclean.com/"+url+" border=0></body></html>");
win1.document.close();
}
