// Java Scripte für Fa. Nolden

function OpenWin(ID,W,H) {
   var l = 5 ;
   var t = screen.height - 1 -H;
   window.open(ID + ".html","_blank","status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width="+W+",height="+H+",left="+l+",top="+t);
}

//function CloseWin() {
//   window.close();
//}



// Menübeschreibung
var content=new Array()
   content[0]='<p>'
   content[1]='<p>Übersicht'
   content[2]='<p>Die Firma'
   content[3]='<p>Produkte'
   content[4]='<p>Service'
   content[5]='<p>Kontakt'
   content[6]='<p>Anfahrt'
   content[7]='<p>Impressum'

function show(whichcontent){
   if (document.all) descriptions.innerHTML='<font class="txtwith14b">'+whichcontent+'</font>'
   else if (document.layers){ 
      document.d1.document.d2.document.write('<font class="txtwith14b">'+whichcontent+'</font>')
      document.d1.document.d2.document.close() }
}
function hide(whichcontent){
   if (document.all) descriptions.innerHTML='<font class="txtwith14b">'+whichcontent+'</font>'
   else if (document.layers){ 
      document.d1.document.d2.document.write('<font class="txtwith14b">'+whichcontent+'</font>')
      document.d1.document.d2.document.close() }
}


