var popupWin;
var href
var title;

function openPopupWindow(href)
{
	if (popupWin) popupWin.close();
	popupWin = null;
	popupWin = window.open(href, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=550,height=730');
	popupWin.focus();
}


function openImageWindowGif(href, title, hSize, vSize)
{
	if (popupWin) popupWin.close();
	popupWin = null;
	var string;
	string = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=' + hSize +',height=' + vSize;
	popupWin = window.open('', 'popup', string); 
	popupWin.focus();
	popupWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
	popupWin.document.write('<HTML>');
	popupWin.document.write('<HEAD>');
	popupWin.document.write('<TITLE>' + title + '</TITLE>');
	popupWin.document.write('<META HTTP-EQUIV=Content-Type content="text/html; charset=windows-1251">');
	popupWin.document.write('</HEAD>');
	popupWin.document.write('<BODY BGCOLOR="#FFFFFF" TEXT="#000000" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>');
	popupWin.document.write('<TABLE ALIGN=center BORDER=0 CELLPADDING=0 CELLSPACING=0>');
	popupWin.document.write('  <TR>');
	popupWin.document.write('	<TD WIDTH=' + hSize + ' ALIGN=center VALIGN=top><IMG SRC="' + href + '.gif" WIDTH=' + hSize + ' ALT="' + title + '"></TD>');
	popupWin.document.write('  <TR>');
	popupWin.document.write('</TABLE>');
	popupWin.document.write('</BODY>');
	popupWin.document.write('</HTML>');
}