function pop(name,x,y) {
	var win = window.open('','_blank',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+x+",height="+y);
	win.document.open("text/html");
	with (win.document) {
	    write("<html><head><title>ФК «Ростов»</title><script language='JavaScript'>self.focus()</script></head><body bgcolor='#FFFFFF' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><a href='#' onclick='window.close()'><img src='"+name+"' alt='закрыть' border='0'></a></body></html>");
	    close();
 }
}
/*
function pop(img,w,h) {
isDOM=document.getElementById;
isMozilla=isDOM && navigator.appName=="Netscape";

if(isDOM){
	var ob_pop = window.document.getElementById('pop');
	
	cH = isMozilla ? window.innerHeight/2 : document.body.clientHeight/2;
	sT = isMozilla ? window.pageYOffset/2 : document.body.scrollTop/2;
	
	ob_pop.innerHTML ='<div style="width:'+w+'px;height:'+h+'px;position:absolute;z-index:50;top:'+cH+'px;"><a href="#" onclick="window.close();"><img src="'+img+'" width="'+w+'" height="'+h+'" border="0" alt="Закрыть"></a></div>';

	window.onresize=popoff;
	window.onscroll = isMozilla ? false : popscroll;
}

}*/