<!--


function createYear(day) {
    var year = day.getYear();
    if (year < 1000) 
        year += 1900;
        return year;
}

function jump(path) {
    var selected_item = document.urlpopupform.urlpopup.options[document.urlpopupform.urlpopup.selectedIndex].value; 
    location.href = path + selected_item;
}

function getDocFromSelect(doc_type, path, year_of_pub, window_properties, new_window) {
    var list_item = document.getdocfromselectform.geolistbox.options[document.getdocfromselectform.geolistbox.selectedIndex].value; 
    if (list_item ==""){
        window.alert("Please try again.");
        return 0;
    } 
    if (year_of_pub == "") {
        doc_from_select =  path + list_item  + "." + doc_type;
    } else {
        doc_from_select = path + list_item  + year_of_pub + "." + doc_type;
    }
//window.alert(doc_from_select);
    if(new_window) {
        doc_window = window.open( doc_from_select, "newDocWindow", window_properties);
        doc_window.focus();
    } else {
        location.href = doc_from_select;
    }	
}

//-->