function preload_link_images(){

return true;
}


// ========================



// =======================================

function swap_link_img(id, source){
	document.images[id].src = source;
	return true;
	}

//		======================================================

function jumpto(loc){			//	used for dropdown select link boxes
// alert("l=" + loc);

var url=loc;
if (url == ""){
	return false;
	}

if( url.charAt(0) != '/'){   // if not absolute url to another page
	url = '#' + url;
	}
document.location.href=url;

/*		-- was used for '_new' window for pages

if( url.charAt(0) != '/'){   // if not absolute url to another page
	url = '#' + url;			// assume section within current page
	document.location.href=url;
}else{
	window.open(url);		// for another page
	}
*/

// alert("url=" + url);

return true;
}




