function checkclear(entry,match,length)
{
	if (entry.value.substr(0,length)==match)
	{
		entry.value="";
	}
}
