function getrandom() {
var n

var min_random = 1;
var max_random = 10;

max_random++;

var range = max_random - min_random;
var n=Math.floor(Math.random()*range) + min_random;

return n;
}

function showimage (url_doc, url_pic, w, h)
{
urlfull = url_doc;
oNewWin = open(urlfull, "", 'menubar=no,directories=no,location=no,resizable=no,scrollbars=no,width=' + w + ',height=' + h + ",left="+(screen.availWidth/2-w/2)+",top="+(screen.availHeight/2-h/2));
oNewWin.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>");
oNewWin.document.write("<html><head><title>&bull; www.rozmisel.ru </title><script src='../../logo.js' type='text/javascript'></script><link href='../../css_photo.css' type='text/css' rel='stylesheet'></head><body>");
oNewWin.document.write("<a href='#' title='закрыть окно' onclick='self.close()'><img src='"+ url_pic +"' width='"+ w +"' height='"+ h +"'></a>");
oNewWin.document.write("</body></html>")}
