function openpics(width,height,fn,alt)
	{

		Magnifier=open("","","left=50,top=10,menubar=no,toolbar=no,location=no,directories=no,scrollbars=yes,status=no,resizable=no,height="+height+",width="+width);
		Magnifier.document.open();
  		Magnifier.document.write('<HTML><HEAD><title>TITLE</title><meta http-equiv="Content-Language" content="ru"><meta content="Document" name="Resourse-Type"><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></HEAD>');
  		Magnifier.document.write('<BODY TOPMARGIN=0 BOTTOMMARGIN=0 LEFTMARGIN=0 RIGHTMARGIN=0 BGCOLOR=#FFFFFF>');
  		Magnifier.document.write('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 width="100%" height="100%" ALIGN=CENTER VALIGN=CENTER>');
  		Magnifier.document.write('<TR><TD ALIGN=CENTER VALIGN=CENTER>');
  		Magnifier.document.write('<span lang=ru><p align=center><font style="font-size : 11px;" color=#000080 face="Verdana, Arial, Comic Sans MS"><strong>Рекламное агентство ПРЕМИУМ ГРУП:<br>реклама в метро - текущие кампании.<br><br></strong></font></p></span>');
  		Magnifier.document.write('</TD></TR>');
		Magnifier.document.write('<TR><TD ALIGN=CENTER VALIGN=TOP>');
  		Magnifier.document.write('<IMG alt="'+alt+'" SRC="'+fn+'">');
  		Magnifier.document.write('</TD></TR>');
   		Magnifier.document.write('</TABLE>');
  		Magnifier.document.write('</BODY>');
  		Magnifier.document.write('</HTML>');
		Magnifier.document.close(); 
	}
	
shown=''
function OpenFile(url) 
	{
	if( shown=='') 
		{
		shown=window.open(url,'OpenFile','left=50, top=10, toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, height=300, width=540');
		}
	else
		{
		shown.close();
		shown=window.open(url,'OpenFile','left=50, top=10, toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, height=300, width=540');
		}
	}
