function winOpen(theURL,winName,features) 
{ 
winName = window.open(theURL,winName,features); 
if(winName == null || winName.closed){window.open(theURL,winName,features);} 
else{winName.location.href = theURL;} 
if (!winName.closed) 
winName.focus(); 
}


function resizeFrame()
		{
			parent.document.getElementById("iframeModul").height= document.body.scrollHeight;
		}

function setBookmark() {
  titel = 'OVPlus Stadtmarketing Overath';
  url = 'http://www.ovplus.de';

  // Mozilla Firefox Bookmark
  if (window.sidebar) {
    window.sidebar.addPanel(titel, url, "");
  }

  // IE Favorite
  else if (window.external) {
    window.external.AddFavorite(url, titel);
  }

  // Opera Hotlist
  else if (window.opera && window.print) {
    return true;
  }
}

