/* 
 * Name: cleartext.js
 * 
 * Release notes:	2010-09-17/TS: Clear form fields on click
 * 
 * 
 */


function clearText(thefield)
{
    if (thefield.defaultValue==thefield.value)
    thefield.value = ""
}
