		var fi='1';
		function writeformbox()
		{
			if (fi==1)
				{
				document.getElementById('write-to-master').style.backgroundPosition='0 -118px';
				document.getElementById('form-box').style.display='inline';
				}
			else 
				{
				document.getElementById('write-to-master').style.backgroundPosition='0 0';
				document.getElementById('form-box').style.display='none';
				}
			fi*=-1;
		}
		function closeformbox()
		{
		document.getElementById('form-box').style.display="none";
		}		

