function gotoUrl(url, target)
{
  switch (url)
  {
    case 'join-eng':
    {
      url = 'http://gateway.inet-cash.de/mc/payment.php?start=on&progid=26089&lang=en&pos=&bgcol=&eurusd=&email=';
      break;
    }
    case 'join-ger':
    {
      url = 'http://gateway.inet-cash.de/mc/payment.php?start=on&progid=26089&lang=de&pos=&bgcol=&eurusd=&email=';
      break;
    }
  }

  var fenster = window.open(url, target, '');
}

function showImage(year, gallery, photo)
{
  var posx = ((screen.availWidth) - 500) / 2;
  var posy = ((screen.availHeight) - 550) / 2;

  if (posx < 1) {posx = 1;}
  if (posy < 1) {posy = 1;}

  posx = Math.floor(posx);
  posy = Math.floor(posy);

  var fenster = window.open('', 'Preview', 'width=500,height=550,left='+posx+',top='+posy+',location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no,hotkeys=no,dependent=yes');
  fenster.document.open();

  with (fenster.document)
  {
    write('<html><head><title>Preview</title><meta http-equiv="imagetoolbar" content="no"></head><body bgcolor="#7C7877" onblur="window.close()" onclick="window.close()">');
    write('<table width="100%" height="100%"><tr><td align="center" valign="middle"><img src="preview/photos/',year,'/gal-',gallery,'/',photo,'_vb.jpg" border="0" alt=""></td></tr></table></body></html>');
  }

  fenster.document.close();
}

function showScreenshot(clip, shot)
{
  var posx = ((screen.availWidth) - 500) / 2;
  var posy = ((screen.availHeight) - 550) / 2;

  if (posx < 1) {posx = 1;}
  if (posy < 1) {posy = 1;}

  posx = Math.floor(posx);
  posy = Math.floor(posy);

  var fenster = window.open('', 'Preview', 'width=500,height=550,left='+posx+',top='+posy+',location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no,hotkeys=no,dependent=yes');
  fenster.document.open();

  with (fenster.document)
  {
    write('<html><head><title>Preview</title><meta http-equiv="imagetoolbar" content="no"></head><body bgcolor="#7C7877" onblur="window.close()" onclick="window.close()">');
    write('<table width="100%" height="100%"><tr><td align="center" valign="middle"><img src="preview/videos/vid-',clip,'/',shot,'_vb.jpg" border="0" alt=""></td></tr></table></body></html>');
  }

  fenster.document.close();
}
