function populateTextBox(theText) 
{
     if (theText.value == "")
	{
         theText.value = "Search...";
     }
 }

function clearTextBox(theText) 
{
     if (theText.value == theText.defaultValue)
	{
         theText.value = "";
     }
 }