function load_print_info () {
    if (document.select_print.print_name.value == 'Select a print ...') {
        alert('Select one of the prints ...');
        return false;
    }
file_to_get = 'display_print_data.php5ja?jump='+document.select_print.print_name.value.substring(0,4);
getMyHTML(file_to_get,'section_2'); 
}




function show_another_page (f,start, member) {
    var base = 'display_print_data.php5ja?jump=' + member;
    if (String(f.start_from.value).substring(0,1) == 'S') {
		if (start < 1) {
		start = 1;
		}
    base += '&start=' + start;
    } else {
    base += '&start=' + f.start_from.value;
    }    
getMyHTML(base,'section_2'); 
}


