


function clearInput(inputBox)
{
	if (inputBox.defaultValue==inputBox.value)
	{
		inputBox.value = "";				
	}
};

