/* 	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	DHTML Library
	Victor Damien DiCara
	
	v 1.0	4/1/2002
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
function imgSwap( targetImg, newImg ) {
	if (document.images) document[targetImg].src = newImg.src;
}

function txtSwap( targetTxt, newTxt ){
	targetTxt.innerHTML = newTxt; 
}

function toggleVisibility( targetEl ){
	document.getElementById(targetEl).style.display = 
	(document.getElementById(targetEl).style.display == "none" ) ? "" : "none";
}

