// NAME: 41.js wurde erstellt mit RedDot; -citeq- Stadt Münster 
// CODE:  Livingpage® für die Stadt Hamm
// LAST CHANGE: 22.12.2005 bm@livingpage.com
// FUNCTION: openwetter, openNewWindow_xxx
  function openwetter(){
   var popurl="http://www.hamm.de/pilsglas/14690.htm"
   winpops=window.open(popurl,"","menuebar=0,toolbar=0,height=210,width=176,resizable=0")
   winpops.focus();
  }
function openNewWindow(url, windowName, windowFeatures) {
 var windowWidth = getWinWidth(500);
 var windowHeight = getWinHeight(700);
    var attributes = (windowFeatures && windowFeatures != "") ? windowFeatures : "width=" + windowWidth + ",height=" + windowHeight + ",menubar,resizable,scrollbars,status";
    var newWindow = window.open(url, windowName, attributes);
    if (window.focus) {
        newWindow.focus();
    }
}
// Fertigstellung: 10.08.2006