/**
 * clearfield.js
 * Copyright (C) 2009
 * Author: Vanity Tracy Stuurland <vanity.stuurland@lightmaker.com>
 * Created: 2009-11-30
 */

function clearSearchField(field)
{
	var def = "Zoek op trefwoorden";
	if(field.value == def)
	{
	    field.value = '';
	} 
}
