ï»¿<!-- 
//Ñêðèïò ðàçâîðà÷èâàíèÿ è ñâîðà÷èâàíèÿ âñïëûâàþùèõ ïîäñêàçîê
function ShowTip (tipName,tipWidth) 
{ 
res_x = screen.width; 
leftPos = Math.floor(res_x/2 - tipWidth/2); 

newWindow = window.open(tipName,"Tip","resizable=yes,scrollbars=yes,width="+tipWidth+",left="+leftPos+"\""); 

//newWindow.document.close(); 
newWindow.focus(); 
} 
// Ñêðèïò ðàçâîðà÷èâàíèÿ è ñâîðà÷èâàíèÿ ôîòî
function ShowImg (imageName,imageWidth, imageHeight,alt) 
{ 
res_x = screen.width; 
res_y = screen.height; 
leftPos = Math.floor(res_x/2 - imageWidth/2); 
topPos = Math.floor(res_y/2 - imageHeight/2); 

// alt = alt+" - Êëèêíóòü ïîâòîðíî äëÿ çàêðûòèÿ îêíà"; 

newWindow = window.open("","newWindow","resizable=no,scrollbars=no,width="+imageWidth+",height="+imageHeight+",left="+leftPos+",top="+topPos+"\""); 
newWindow.document.open(); 

newWindow.document.write('<html><title>'+alt+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="white" onClick="self.close()">'); 
newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="0" align="center" height='+imageHeight+' ><tr><td>'); 
newWindow.document.write('<a href="javascript:window.close();"><img border=0 src='+imageName+' width='+imageWidth+' height='+imageHeight+' title=\"ÐšÐ»Ð°Ñ†Ð½Ñ–Ñ‚ÑŒ, Ñ‰Ð¾Ð± Ð·Ð°ÐºÑ€Ð¸Ñ‚Ð¸ Ð²Ñ–ÐºÐ½Ð¾\" ></a>'); 
newWindow.document.write('</td></tr></table></body></html>'); 

//newWindow.document.close(); 
newWindow.focus(); 
} 

-->
