// JavaScript Document
function clearTextSearch(txtName)
{
	if(txtName.value=="Search")
	{
		txtName.value="";
	}	
}

