/*
Author: Thomas Andreo
Author URI: http://www.tomz-online.com/
*/

function displayText ( target, text ) {
	
	document.getElementById( target ).innerHTML = text;
}

function clearText ( target ) {

	document.getElementById( target ).innerHTML = "";
}
/*
function rollOver ( target ) {
	
	document.getElementById( target ).src = "";
}

function rollOut ( target ) {
	
	document.getElementById( target ).src = "";
}
*/

