var const1="<html><head><title>Проект 'Возвращенные имена'</title></head><body  bgcolor='#ffffff'><center><a href='javascript:self.close()'><img border=0 src='";
var const2="'></a></center></body></html>";

function openWin(url){
var s = const1 + url + const2;
var win = open("","info");
win.document.open();
win.document.write(s);
win.document.close();
win.focus();
}

var is_opera = (navigator.userAgent.indexOf("Opera")!=-1);
var newWin;
function winopen1(name,w,h){
var t = "resizable=yes,scrollbars=yes,height=" + h + ",width="+ w;
url = "/pm/levashovo/show_img.php?n=" + name;
if(!newWin || newWin.closed || is_opera){
    newWin= window.open(url,"new", t);
	if(newWin.focus) newWin.focus();
    }
	else {
    newWin.location.href = url;
    if(newWin.focus) newWin.focus();
    }
}

