<!--

function toggle(param)
{	

	var obj = document.getElementById(param);
	

	if (obj.style.display == "none" || obj.style.display == "")
	{
		obj.style.display = "block";
	}
	else
	{
		obj.style.display = "none";
	}

}


function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

//-->