function imgopen(imgf,tit){
//alert("Begin image");

rand_id='image'+(Math.round(Math.random()*1000));

outf="<html>"
 +"<head>"
 +"<title>"+tit+"</title>"
 +"<style>body{margin:0px}</style>"
 +"</head>"
 +"<body leftmargin=0 topmargin=0>"
+"<br><br><br>"
+"<div align=\"center\"><table><tr><td align=\"center\">"
 +'<img src=\"http://www.elbrus-top.ru'+imgf+'\">'+"<br>"
+"</td></tr>"
+"<tr><td align=\"center\">"
+"<font color=\"silver\">Если картинка не загрузилась, закройте окно и вновь нажмите на ссылку.</font>"
+"</td></tr></table></div>"
+"</body>"+"</html>";

iopen=self.open("about:blank", rand_id);
iopen.document.write(outf);

//iopen.close();

//iopen=self.open("about:blank", rand_id);
//iopen.document.write(outf);

//alert("end image");
 }