function open_url(adr,w,h) {
page=window.open(adr,'_blank','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=0,resizable=0,width='+w);
page.focus();
}

function popup1(FILE, the_width,the_height) { 
CONTENT = "<HTML><HEAD><TITLE>Имидж Плюс</TITLE></HEAD>" + "<BODY style='margin: 0px; padding: 0px;' bgcolor=#F6F6F6><div align=center><IMG SRC='" + FILE + "' BORDER=0 onClick='window.close()'>" + "</div></BODY></HTML>";
pop = window.open("","","status=no,menubar=no,scrollbars=no,resizable=no,width=" + the_width + ",height=" + the_height);
pop.document.open();
pop.focus();
pop.document.write(CONTENT);
pop.document.close();
}
