var tags = document.getElementsByTagName("DIV");
for (var i=0; i<tags.length; i++) {
  if ((tags[i]).className=="headlink") {
    (tags[i]).onmouseover=Expand;
    (tags[i]).onmouseout=Collapse;
  }
  if ((tags[i]).className=="logo") {
    (tags[i]).onclick=GoHome;
  }
}
function Expand() {
  this.style.overflow='visible';
}
function Collapse() {
  this.style.overflow='hidden';
} 
function GoHome() {
  document.location = 'http://www.snkey.com';
}
function showfull(obj, xs, ys) {
 var ImgPath = obj.getAttribute('src');
 var x = ImgPath.lastIndexOf('.');
 ImgPath = ImgPath.substr(0,x)+'_f'+ImgPath.substr(x,5);
 if (!xs) xs=800;
 if (!ys) ys=580; 
 var Win = window.open("","Win","toolbar=0,height="+ys+",width="+xs);
 with (Win.document) {
  open();
  writeln("<html>");
  writeln("<body style='padding: 0; margin: 0; text-align: center; cursor: crosshair'>");
  writeln("<img src='"+ImgPath+"' alt='' onclick='window.close();' title='Ùåëêíèòå ÷òîáû çàêðûòü ýòî îêíî' />");
  writeln("</body>");
  writeln("</html>");
  close();
 }
}

 

