function goThere(URL, dropDown) {
    URLdtl = dropDown.options[dropDown.selectedIndex].value;
    if (  URLdtl > 0 ) {
	    window.location.href=URL+'.php?id='+URLdtl;
	}
}
function checkMe( tform ) {
    if ( tform.nospam.checked  ) return true;
    else {
        alert ('You must check the NOSPAM checkbox');
        return false;
    }
}