var wd = window.document;

function sweep(oid, str)
	{
		if(wd.getElementById(oid).value == str)
			{
				wd.getElementById(oid).value = '';
			}
	}
