function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function autoGoTo(formName, selName) {

 	var strValue = eval("document." + formName + "." + selName + ".options[document." + formName + "." + selName + ".selectedIndex].value");
 
//	alert(strValue);

	var firstChar = strValue.substring(0,1);
	var strLength = strValue.length;
	var URL = strValue.substring(1,strLength);
//	alert(firstChar);
//	alert(URL);
 
	if ( firstChar == '#' )			// open a popup window
		{
		window.open(URL,"dummy","");
		//width=300,height=300,status=yes,menubar=yes,address=yes ,scrollable=yes,resizable=yes
		}
	else if ( firstChar == '!')		// open on top of current window
		{
		if (URL != "none") { 
			var baseURL = "http://www.mountain-link.com/"        
	  		window.location.href = baseURL + URL;
			}
		}		

}


function NewWindow(mypage, myname, w, h, scroll) 
{
// var winl = (screen.width - w) / 2;
var winl = 20;
// var wint = (screen.height - h) / 2;
var wint = 20;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}