// Tooltip Mouseover Effects //
// Version V1.0.0, 03/06/2007 WBM. //
// Copyright 2007. Property of Design Atom - wwww.designatom.com //

// Show the image by calling it
function fctShowImg(strTarget,strImageName){
	eval("document.images." + strTarget + ".src = " + strImageName + ".src");
}

// Show the default image
function fctHideImg(strTarget){
	eval("document.images." + strTarget + ".src = img" + strTarget + ".src");
}

// Show the mouseover tooltip
function fctShowTooltip(strTarget){
	eval("document.images." + strTarget + ".style.visibility = 'visible'");
	eval("document.images." + strTarget + "_shadow.style.visibility = 'visible'");
	
	// Show the tooltip text
	if(document.all){
		eval("document.all." + strTarget + "_text.style.visibility = 'visible'");
	}
	else if(document.getElementById(strTarget+"_text")){
		eval("document.getElementById('" + strTarget + "_text').style.visibility = 'visible'");
	}
}

// Hide the mouseover tooltip
function fctHideTooltip(strTarget){
	eval("document.images." + strTarget + ".style.visibility = 'hidden'");
	eval("document.images." + strTarget + "_shadow.style.visibility = 'hidden'");
	
	// Show the tooltip text
	if(document.all){
		eval("document.all." + strTarget + "_text.style.visibility = 'hidden'");
	}
	else if(document.getElementById(strTarget+"_text")){
		eval("document.getElementById('" + strTarget + "_text').style.visibility = 'hidden'");
	}
}
