<!--
function SwapImg(name,filePath)
{
	document.getElementById(name).src=filePath;
}

function ImgToOver(strPath,strName)
{
	var filePath = strPath+strName+"_on.gif";
	SwapImg(strName,filePath);
}

function ImgToNormal(strPath,strName)
{
	var filePath = strPath+strName+"_ove.gif";
	SwapImg(strName,filePath);
}

function oveImgview(strPath,name){
	document.getElementById(name).src = strPath.searchReplace("_off","_over");
}

function outImgview(strPath,name){
	document.getElementById(name).src = strPath.searchReplace("_over","_off");
}

function setPng24(obj) {
    obj.width=obj.height=1;
    obj.className=obj.className.replace(/\bpng24\b/i,'');
    obj.style.filter =
    "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
    obj.src='';
    return '';
}
-->