<!--

function bookmarkIt() { 
  var bookmarktitle = document.title;
  var bookmarkurl = document.location;

  if (window.sidebar&&window.sidebar.addPanel) { 
    window.sidebar.addPanel(bookmarktitle, bookmarkurl,""); 
  } else if (document.all) {
    window.external.AddFavorite(bookmarkurl, bookmarktitle);
  } else if (window.opera && window.print) {
    return true;
  }
}

//if (top.frames.length > 0 ) {
// top.location = "http://www.munig.com"; 
//}

function windowOpen(page,width,height,scrollbars) {
 onLoad = open(page,'ContentWindow','scrollbars='+scrollbars+',width='+width+',height='+height+',toolbar=no,directories=no,menubar=no,resizable=yes,locationbar=no,statusbar=no');
}

function changeVisibility() {
 if(document.all) { // IE
  document.all.wait.style.visibility = 'hidden';
  document.all.lay1.style.visibility = 'visible';
 } else if (document.layers) { // NC
  document.layers["wait"].visibility = 'hidden';
  document.layers["lay1"].visibility = 'visible';
 } else if (document.getElementByID) { // N6
  document.getElementByID("wait").style.visibility = 'hidden';
  document.getElementByID("lay1").style.visibility = 'visible';
 }
}

function openvpr()
{
 window.open('http://vpr.wundermedia.de/vamain/login.php?partner=4','VPR','height=550,width=790,menubar=no,location=no,resizeable=yes,status=no,toolbar=no,dependent=no,scrollbars=yes');
}

-->