﻿function Clear(me)
//clear a text box when selected
//call syntax: onClick='Clear(this)'
{
    me.value = '';
}
