function blank_field(str,value)

{
	if(document.getElementById(str).value == value)
		{
			document.getElementById(str).value = "";
		}	
}
function fill_field(str,value)
{
	if(document.getElementById(str).value == "")
	{
		document.getElementById(str).value = value;
	}	
}
