function toggleString(e, string)
{
	if (e.value == string)
	{
		e.value = "";
	}
	else
	{
		if (e.value == "")
		{
			e.value = string;
		}
	}
}

