function clearme(theInputBox)
{
	if(theInputBox.value == theInputBox.defaultValue)
	{
		theInputBox.value = '';
	}
}

function restoreme(theInputBox)
{
	if(theInputBox.value == '')
	{
		theInputBox.value = theInputBox.defaultValue;
	}

}

