<!--
// rechte Maustaste ausser Funktion legen
function right(e) {
  if (navigator.appName == 'Netscape' && 
    (e.which == 3 || e.which == 2))
    return false;
  else if (navigator.appName == 'Microsoft Internet Explorer' && 
    (event.button == 2 || event.button == 3)) {
    alert("NICE TRY ;-)) !!!");
    return false;
  }
  return true;
  }
  document.onmousedown=right;
  if (document.layers) window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown=right;
//----------------------------------------------------------------
var browserok = false;
if( parseInt( navigator.appVersion ) >= 3 && navigator.appName == "Netscape") { browserok = true; }
if( parseInt( navigator.appVersion ) >= 4 && navigator.appName == "Microsoft Internet Explorer") { browserok = true; }
function vs_ein(nam,bild,besch) {if (browserok) {document.images[nam].src = bild; window.status=besch;}}
function vs_aus(nam,bild) {if (browserok) {document.images[nam].src = bild; window.status='';}}
function vs_chbld(nam,bild,fra) {parent.frames[fra].document.images[nam].src = bild;}
function vs_bgf(f) {window.document.bgColor=(f);}
function vs_txf(f) {window.document.fgColor=(f);}
function vs_lf(f) {window.document.linkColor=(f);}
function vs_alf(f) {window.document.alinkColor=(f);}
function vs_vlf(f) {window.document.vlinkColor=(f);}
function vs_sttx(f) {window.status=(f);}
function vs_openbr(openbrse, openbrna, openbrop) {window.open(openbrse, openbrna, openbrop )}
function vs_multilink(URL1,F1,OP1,URL2,F2,OP2,URL3,F3,OP3)
	{URL=new Array(); F=new Array(); OP=new Array(); URL[1] = URL1; URL[2] = URL2; URL[3] = URL3; F[1] = F1; F[2] = F2; F[3] = F3; OP[1] = OP1; OP[2] = OP2; OP[3] = OP3;
	for(i=1;i<=3;i++){if(URL[i] != "") {
		if(F[i] == "_new") {window.open(URL[i])}
		else{ if(F[i] == "_self") {location.href=URL[i];}
		    else{ if(F[i] == "_top") {top.location.href=URL[i];}	
			else{ if(OP[i] != "") {vs_openbr(URL[i], F[i], OP[i])}
				else{ parent.frames[F[i]].location.href=URL[i];}}}}}}}

//-->
