
	var	d = document;
function	SwapState(field)
{	
	with(field){
		
			if (childNodes[3].style.display=='none'||childNodes[3].style.display==''){

				childNodes[3].style.display='block';
			}else{

				childNodes[3].style.display='none';	
			}
		}
}
