








// you are not allowed to copy any code or extract code from this file, its illegal !!!!
// hot linking is theft, we have to pay for the amount of data downloaded from this server
// you are not allowed to link to any of our images, except it is stated otherwise






































topoffset = 0;
LargeImgSubDir = '/large/';


// both functions for IE
function SetBG(t) { t.style.background="#FF00FF"; }
function ClrBG(t) { t.style.background="transparent"; }

var lrgbox;
var lrgimg;
var lrgcap;


function CreateLrgImg() {
  document.write('<IMG BORDER="0" NAME="LrgImg" ID="LrgImg" ONCLICK=\'HideImg();\' CLASS="sLrgImg" SRC="tr8x8.gif" ONLOAD=\'SetWidth();\' alt="Click to close">');
  // tr8x8.gif is transparent dummy image to prevent missing image display
  document.write('<br><div ID="bcap" CLASS="bcap">&nbsp;</div>');
}

function enlarge(img) {

  lrgimg.src = 'tr8x8.gif';
  s = img.src;
  x = '';

  SetText(img.alt);
  l = s.lastIndexOf('/thumb');

  lrgimg.src = s.substring(0,l)+'/large'+s.substring(l+6,s.length);

  lrgbox.style.top = document.body.scrollTop+topoffset;
  lrgbox.style.left = 200;
  lrgimg.style.visibility="visible";
  lrgbox.style.visibility="visible";
  if( window.opera) lrgbox.style.width = 200;
}

function SetWidth() 
{

  lrgbox.style.width = lrgimg.width+6;

}

function HideImg() {
  lrgimg.style.visibility="hidden";
  lrgbox.style.visibility="hidden";
} 

function SetText(T) {
  lrgcap.firstChild.nodeValue = T;
}

function LoadAction() {

CreateLrgImg();
lrgbox = document.getElementById('LrgBox');
lrgimg = document.getElementById('LrgImg');
lrgcap = document.getElementById('bcap');
}

