var imageWindow; 
function ImgWin(src,width,height,print){ 
	var scroll='no';
	if (print==true)
	{	var w=20;	var h=20;	}
	else{ var w=20;	var h=0;		}

	if( height>600 ) { w = w+width; h=600; scroll='yes'; }
	else { w=width; h=h+height; scroll='no'; }

	if(imageWindow)
		imageWindow.close(); 
	imageWindow=window.open("","blankImageWindow", 'status=no,scrollbars='+scroll+',resizable=0,width='+w+',height='+h+''); 
	imageWindow.document.write("<html><head><title>Просмотр</title><link rel='stylesheet' type='text/css' href='./inc/normal.css'></head>");
	imageWindow.document.write("<body topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor=white text=black link=black alink=black vlink=black>"); 
	imageWindow.document.write("<center>"); 
	imageWindow.document.write("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#FFFFFF>"); 
	imageWindow.document.write("<tr><td align=center bgcolor=white>"); 
	imageWindow.document.write("<a href='javascript:self.close();' title='закрыть окно'><img src='"+src+"' width="+width+" height="+height+" border=0></a>"); 
	if (print==true)
		imageWindow.document.write("</td></tr><tr><td align='center'><a class='cat' href='javascript:self.print();'>Распечатать</a></td></tr>"); 
	else
		imageWindow.document.write("</td></tr>"); 
	imageWindow.document.write("</table>"); 
	imageWindow.document.write("</body></html>"); 
	imageWindow.document.close(); 
	imageWindow.focus(); 
} 


var docWindow; 
function PanWin(src){ 
	var scroll='no';
	var w=710; 
	var h=560;
if(imageWindow)
		imageWindow.close();
	docWindow=window.open(src,"blankDocWindow", 'status=no,scrollbars='+scroll+',resizable=0,width='+w+',height='+h+''); 
	docWindow.focus(); 
} 

var hlpWindow; 
function ShowHelpWin(src){ 
	var scroll='yes';
	var w=500; 
	var h=400;

	hlpWindow=window.open("../template/"+src,"blankHelpWindow", 'status=no,scrollbars='+scroll+',resizable=0,width='+w+',height='+h+''); 
	hlpWindow.focus(); 
} 

var shWindow; 
function ShowWin(src){ 
	var scroll='yes';
	var w=500; 
	var h=400;

	shWindow=window.open("","blankDocWindow", 'status=no,scrollbars='+scroll+',resizable=0,width='+w+',height='+h+''); 
	shWindow.document.location="./control/show.php?id="+src;
	shWindow.focus(); 
} 

function GoToSite(src)
{
	window.open(src,"general"); 
	self.close();
}