// JScript File
<!--//
/*
toggleField()
Param: obj object - This is the form field that calls this function
Param: val string - This is the string that is matched against the contents of the form field.
This function clears a targeted form field.
*/
function toggleField(obj,val)
{
    if(obj.value == val)
    {
	    obj.value = "";
    }
    else if(obj.value == "")
    {
	    obj.value = val;
    }
}
/**/
function swapImage(obj,val)
{
    if(document.images){
        obj.src = val;
    }
}
//-->// JavaScript Document