

function ChangeImage(obj)
{
	var str = document.images[obj].src;			
	str = str.replace(".gif","_on.gif");					
	document.images[obj].src=str;
}
function BackImage(obj)
{
	var str = document.images[obj].src;			
	str = str.replace("_on.gif",".gif");					
	document.images[obj].src=str;
}		

