function preloadImages() {
 if (document.images) {
  var imgFiles = preloadImages.arguments;
   if (document.preloadArray==null) document.preloadArray = new Array();
    var i = document.preloadArray.length;
     with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!='#'){
       preloadArray[i] = new Image;
         preloadArray[i++].src = imgFiles[j];
	  } }
	  }
	  
	  
function openbignewgoodwindow (path_im,image_src, image_width, image_height, title_date, image_text) {
  image_id = 1;
  //alert(image_id);
  image_var = "<img src='"+ path_im + image_src + "' width='" + image_width + "' height='" + image_height + "' alt='" + image_text +"' title='" + image_text +"' border='0'>";
  var myWin, my_left;
  my_left=(screen.width/2);
//  if(image_text!=''){ image_height=parseInt(image_height) + 15*parseInt(Math.ceil(image_text.length*7/image_width)); }
  open_window_string = "myWin = open('','"+ image_id +"','width="+image_width+",height="+image_height+",directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no,top=10,left=10');";
  eval(open_window_string);
  myWin.document.open();
  myWin.document.write("<HTML>\n<HEAD>\n<TITLE>");
  myWin.document.write(title_date);
  myWin.document.write("</TITLE>\n");
  myWin.document.write("<META name='other.language' content='ukrainian,russian,english'>\n");
  myWin.document.write("<META http-equiv='content-type' content='text/html; charset=windows-1251'>\n\n");
  myWin.document.write("<link rel='stylesheet' type='text/css' href='css/glamain.css'>\n");
  myWin.document.write("</HEAD>\n");
  myWin.document.write("<body onLoad='focus();' bgcolor='#FFFFFF' text='#4F4F4F' link='#000000' vlink='#000000' alink='#000000' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>\n\n");
  myWin.document.write("<table border=0 cellpadding=0 cellspacing=0 width=100% >\n");
  myWin.document.write("<tr><td align=middle valign=top onclick='window.close();'>\n");
  myWin.status="SINGLE CLICK - CLOSE WINDOW";
  myWin.document.write(image_var);
//  myWin.document.write("<br>"+image_text);
  myWin.document.write("</td></tr>");
  if (navigator.appName=="Microsoft Internet Explorer") {
    myWin.document.write("<tr><td align=middle class=mainsm valign=center>\n");
    myWin.document.write("\n");
    myWin.document.write("</td></tr>\n");
  }
  myWin.document.write("</table>\n</body>\n</html>\n");
  myWin.document.close();
}

function marklinks(){
        aarr = document.getElementsByTagName("a");
        for(i=0;i<aarr.length;i++){
               if(aarr[i].className == 'advert'){
                       aarr[i].onclick = function(){
                               return false;
                       }
               }
        }
}
