function ShowHideDiv(DivTag) {
        var fldDiv;
        fldDiv = eval(DivTag);
        if (fldDiv.style.display == "none") {
                fldDiv.style.display = "block";
        }
	else {
                fldDiv.style.display = "none";
	}
        return false;
}

function nwpopup(){
	nwpag = city.options[city.selectedIndex].value;
	window.open(nwpag,'new','scrollbars=yes width=426 height=500');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}