<!--
function submitAddrSelection( objRadioBtn )
{
	if ( objRadioBtn.value == "R" || objRadioBtn.value == "C" )
	{
		document.Form1.addrType.value = objRadioBtn.value;
		document.Form1.submit();
	}
}

function OpenMapWindow( go_there )
{
	var width = 470;
	var height = 487;
	var scrollbar = "no";
	var bars = "menubar=no,toolbar=no" ;

	var strwindow = "toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=no,scrollbars=" + scrollbar + "," + bars + ",resizable=yes";
	if (navigator.appName == "Microsoft Internet Explorer")
		strwindow = "toolbar=no,width=" + (width-10) + ",height=" + (height-5) + ",directories=no,status=no,scrollbars=" + scrollbar + "," + bars + ",resizable=yes";

	windowpic = window.open(go_there, "wwchild", strwindow);
}

function OpenDriveWindow( go_there )
{
	var width = 620;
	var height = 590;
	var scrollbar = "yes";
	var bars = "menubar=no,toolbar=no" ;

	var strwindow = "toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=no,scrollbars=" + scrollbar + "," + bars + ",resizable=yes";
	if (navigator.appName == "Microsoft Internet Explorer")
		strwindow = "toolbar=no,width=" + (width-10) + ",height=" + (height-5) + ",directories=no,status=no,scrollbars=" + scrollbar + "," + bars + ",resizable=yes";

	windowpic = window.open(go_there, "wwchild", strwindow);
}
//-->