<!--
// Copyright 2001-2004 Digital Dutch (www.digitaldutch.com)
function gotonewpage(what) {
  value = what.options[what.selectedIndex].value;
  if (value == "") return;
  window.location.href = value;
}

//-->
<!--
function CL(){var CL = window.close()}
//-->
<!--
function Quelltext()
{
window.location="view-source:"+window.location
}
//-->
<!--
function SymError()
{
  return true;
}

window.onerror = SymError;

//-->
<!--
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("Bitte nicht kopieren !");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
//-->
<!--
function closemenu(){
return false
}
function omu(e){
if(e.which==1){
window.releaseEvents(Event.MOUSEMOVE);
window.onmousemove=null
}
}
function nr(e){
if(e.which==1){
window.captureEvents(Event.MOUSEMOVE);
window.onmousemove=closemenu
}
if(e.which==3){
return false
}
}
function cv(){
if(event.button==2||event.button==3)alert("Bitte nicht kopieren !")
}
moi=document.all;
elem=document.getElementById;
if(moi){
if(elem){
document.onselectstart=closemenu;document.oncontextmenu=closemenu
}
else{
document.onmousedown=cv
}
}
if(elem&&!moi){document.onmousedown=closemenu;
document.onmouseup=nr;
document.oncontextmenu=closemenu
}if(document.layers){
window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
window.onmousedown=nr;window.onmouseup=omu
}
function noprint(){
for(lp=0;lp<document.all.length;lp++){
if(document.all[lp].style.visibility!=hidden){
document.all[lp].style.visibility=hidden;
document.all[lp].id=muw
}
}
};
function printe(){
for (lp=0;lp<document.all.length;lp++){
if(document.all[lp].id==muw)
doclosemenuelement.all[lp].style.visibility=""
}
};
window.onbeforeprint=noprint;        window.onafterprint=printe;
//-->
<!-- Begin

//Animated Window- By Rizwan Chand (rizwanchand@hotmail.com)
//Modified by DD for NS compatibility
//Visit http://www.dynamicdrive.com for this script
function expandingWindow(website) {
var windowprops='width=100,height=100,scrollbars=yes,status=yes,resizable=yes'
var heightspeed = 7; // vertical scrolling speed (higher = slower)
var widthspeed = 7;  // horizontal scrolling speed (higher = slower)
var leftdist = 10;    // distance to left edge of window
var topdist = 10;     // distance to top edge of window

if (window.resizeTo&&navigator.userAgent.indexOf("Opera")==-1) {
var winwidth = window.screen.availWidth - leftdist;
var winheight = window.screen.availHeight - topdist;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist +","+ windowprops);
for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed)
sizer.resizeTo("1", sizeheight);
for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed)
sizer.resizeTo(sizewidth, sizeheight);
sizer.location = website;
}
else
window.open(website,'mywindow');
}
//  End -->
