/*
  This code is from Dynamic Web Coding 
  at http://www.dyn-web.com/
  Copyright 2001-3 by Sharon Paine 
  See Terms of Use at http://www.dyn-web.com/bus/terms.html
  Permission granted to use this code 
  as long as this entire notice is included.
*/

/* code for clearing and restoring checkboxes */

old_textbox_value = "";

function clearBox(t,original)
{
    if(t.value == original)
    {
        old_textbox_value = t.value;
        t.value = "";
    }
}

function restoreBox(t)
{
    if(t.value == "")
    {
        t.value = old_textbox_value;
        old_textbox_value = "";
    }
}


