var popWin;

function popupwindow1(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(200, 20);
 popWin.focus();
}

function popupwindow3(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(30, 30);
 popWin.document.write ("<HTML><HEAD><TITLE>Worldwide Diving GmbH</TITLE></HEAD>");
 popWin.document.write ("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' MARGINHEIGHT='0' MARGINWIDTH='0'>");
 popWin.document.write ("<img src='"+url+"'>");
 popWin.document.write ("</body></HTML>");
 popWin.focus();
}

/* Only set closed if JS-enabled */ 
document.getElementsByTagName('html')[0].className = 'isJS'; 
function tog(dt) 
{ 
var display, dd=dt; 
do{ dd = dd.nextSibling } while(dd.tagName!='DD'); 
toOpen =!dd.style.display;
dd.style.display = toOpen? 'block':'' 
//dt.getElementsByTagName('span')[0].innerHTML = toOpen? '-':'+' ; 
dt.getElementsByTagName('span')[0].innerHTML = toOpen? '<font color="#0000AA"><u>[Verbergen]</u></font> &nbsp;':'<font color="#0000AA"><u>[Anzeigen]</u></font> &nbsp;' ; 
} 

function anzeigen(a)
{
document.location.href=a;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}

