<!--
// Copyright (c) 2000 - Internet Technology DE GmbH

function SwapImage(Name, LoadedImage, StatusText) {
   window.document.images[Name].src = LoadedImage.src;
	 window.status = StatusText;
	 return true;
}

function OpenWin(url,name,height,width)
{
  var InfoWin = window.open(url,name,"directories=0,height="+height+",width=" + width + ",hotkeys=0,location=0,menubar=0,resizable=1,screenX=150,screenY=10,left=150,top=10,scrollbars=1,status=1,titlebar=0,toolbar=0");
  InfoWin.focus();
}

//-->

