var popupW=860;
var popupH=660;

function open_win(lnk){
	w=popupW;
	h=popupH;
	x=screen.width/2-w/2;
	y=screen.height/2-h/2;
	win_name="popup_window"+Math.floor(Math.random()*10000);
	nuWin = window.open(lnk, win_name, "width="+w+", height="+h+", left="+x+", top="+y+", status=no, toolbar=no, menubar=no, scrollbars=yes, resisable=no");
	nuWin.focus();
}

function show_pic(pic,alt){
	k = new Image();
	k.scr = pic;
	if(alt==null)alt='Фотография';
	myWin = window.open("","displayWindow",
	               "width="+10+",height="+10+",status=no,toolbar=no,menubar=no");
	 myWin.document.write("<html><head><title>"+alt+"</title></head><body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>");
	
	 myWin.document.write("<img name=tests3 src="+k.scr+" alt='"+alt+"'>");
	 myWin.document.write("</body></html>"); 
	
	do{
	}while(!myWin.document.tests3.complete);
	
	wd = myWin.document.tests3.width+10;
	ht = myWin.document.tests3.height+20;
	myWin.resizeTo(wd,ht);
}