<!--
	function flipImg(textItem, NewSrc)
	{
		var MySrc;
		if (NewSrc == 'undefined')
			MySrc = imgErrSrc;
		else
			MySrc = NewSrc;
		document.images["img_" + textItem.name].src = MySrc;
	}
	
	function flipImgBack(url)
	{
		var proto = (document.location.protocol);
		if (proto == 'https:')
			url = document.location.protocol + '//' + document.location.host + '/';
			
		for (i=0; i < document.images.length; i++)
		{
		        if(document.images[i].src == url + "images/arrow.gif")
		                document.images[i].src = url + "images/1pixel.gif";
		}
	}	
//-->