//<!--
browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) {
document.write("<link REL='stylesheet' HREF='includes/ie4.css' TYPE='text/css'>");
} 
else if (browser_type == "Netscape" && (browser_version >= 4)) {
document.write("<link REL='stylesheet' HREF='includes/netscape4.css' TYPE='text/css'>");
}

function other (field, msg) {
        // popup to fill in if user picks other

        // need to add an option to the select field
        // then select it

        if (field.options[field.selectedIndex].value == 'other') {
                var other = prompt ("Enter other " + msg + ":", "")
                if ( other != null) {
                        var l = field.options.length
                        field.options[l] = new Option (other)
                        field.selectedIndex = l
                }
        }

}


//-->