// $Id: functions.js,v 1.1.1.1 2005/05/24 13:35:11 mfountain Exp $

// ------------------------------------------------------



function go2page(formName,selectName) {

	script = 'hrefval=document.'+formName+'.'+selectName+'.options[document.'+formName+'.'+selectName+'.options.selectedIndex].value; if(hrefval==\'\') hrefval=window.location.href; window.location.href=hrefval;';

	eval(script);

}

function setBookmark(url,str){

	if (str=='') {

		str=url;

	}

	if (document.all) {

		window.external.AddFavorite(url,str);

	} else {

		alert('Press CTRL and D to add a bookmark to:\n"'+url+'".');

	}

}



