<!--

function load_url()
{
	box = document.form1.links;
	//alert(box.selectedIndex);
	//alert(box.options[box.selectedIndex].value);
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}

function popUp(URLtoOpen)
{

var windowName = 'MDC';
var height = 481;
var width = 764;
windowFeatures ="menubar=no,scrollbars=no,location=no,favorites=no,resizable=no,status=no,toolbar=no,directories=no";
var test = "'";
winLeft = (screen.width-width)/2;
winTop = (screen.height-(height+110))/2;
myWin= open(URLtoOpen,windowName,"width=" + width +",height=" + height + ",left=" + winLeft + ",top=" + winTop + test + windowFeatures + test);
}

var newwin;

function launchwin(winurl,winname,winfeatures)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);
	if(javascript_version > 1.0)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}

-->