var wd = window.document;

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

function clearMe(obj, val){
	
	if(obj.value == val){
		obj.value ='';
	}
}

