function imgOpen(imgURL,imgWidth,imgHeight,Title) {
var 
  imgWndw=window.open('','_blank','width='+(imgWidth+20)+',height='+
  (imgHeight+70)+',toolbar=no,menubar=no,location=no,status=no,'+
  'resizable=yes,scrollbars=yes');
//var imgTitle=(Title)?Title:imgURL+": "+imgWidth+'x'+imgHeight;
var imgTitle=Title;
with (imgWndw.document){
  open();
  write('<ht'+'ml><he'+'ad><ti'+'tle>'+imgTitle+'</ti'+'tle>'+
  '<lin'+'k rel="stylesheet" href="/shared/IE.css" type="text/css">'+
  '</he'+'ad><bo'+'dy bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" '+
  'rightmargin="0" bottommargin="0" marginwidth="0" '+
  'marginheight="0">'+
  '<table width="100%" border="0"><tr><td width="91">'+
  '<img src="/shared/site_logo2_small.gif" alt="Gutovs.com" width="96" height="27"></td>'+
  '<td class="bigpic" valign="middle">'+Title+'</td></tr></table>'+
  '<img src="'+imgURL+'" width="'+imgWidth+
  '" height="'+imgHeight+'" border="0" alt="'+imgTitle+
  '"><br>'+
  '<table width="100%" border="0"><tr><td class="homeMenu">&copy Pictures: Alexander and Darja Gutov</td></tr></table>'+
  '</bo'+'dy></ht'+'ml>');
  close();
}
return false
}

function imgOpenNoCopy(imgURL,imgWidth,imgHeight,Title,Title2) {
var 
  imgWndw=window.open('','_blank','width='+(imgWidth+20)+',height='+
  (imgHeight+70)+',toolbar=no,menubar=no,location=no,status=no,'+
  'resizable=yes,scrollbars=yes');
//var imgTitle=(Title)?Title:imgURL+": "+imgWidth+'x'+imgHeight;
var imgTitle=Title;
with (imgWndw.document){
  open();
  write('<ht'+'ml><he'+'ad><ti'+'tle>'+imgTitle+'</ti'+'tle>'+
  '<lin'+'k rel="stylesheet" href="/shared/IE.css" type="text/css">'+
  '</he'+'ad><bo'+'dy bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" '+
  'rightmargin="0" bottommargin="0" marginwidth="0" '+
  'marginheight="0">'+
  '<table width="100%" border="0"><tr><td width="91">'+
  '<img src="/shared/site_logo2_small.gif" alt="Gutovs.com" width="96" height="27"></td>'+
  '<td class="bigpic" valign="middle">'+Title+'</td></tr></table>'+
  '<img src="'+imgURL+'" width="'+imgWidth+
  '" height="'+imgHeight+'" border="0" alt="'+imgTitle+
  '"><br>'+
  '<table width="100%" border="0"><tr><td class="homeMenu">'+Title2+'</td></tr></table>'+
  '</bo'+'dy></ht'+'ml>');
  close();
}
return false
}