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

