function ViewImage(ifile) { 
var win;
var sWidth;
var sHeight;
win = window.open("","imageviewer","width="+800+",height="+600+",menubar=no,toolbar=no");
win.document.open();
win.document.write("<html><head><title>Неофициальный Чернобыль</title>");
win.document.write("</head><body bgcolor='#000000'>");
win.document.write('<div><center>');
win.document.write("<a href='http://www.slavutich.kiev.ua'><img src="+ifile+" border='0'></a></center></div></body></html>");
win.document.close();
}


