function popup_form(theURL,winName,features) { //v2.0
			  window.open(theURL,winName,features);
			}

function popup(page) {
      window.open(page, '', 'resizable=no, location=no, menubar=no, status=no, scrollbars=no, menubar=no, title=no');
//        window.open(page, '', 'fullscreen=yes');
    }
	
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function popup2(page) {
      window.open(page, '', 'resizable=yes, location=no, menubar=no, status=no, scrollbars=yes, menubar=no, title=no');
//        window.open(page, '', 'fullscreen=yes');
    }
	
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

