function EditInput(current_input,previus_search,label)
{
if (current_input.value == label)
   {
    current_input.value="";
   }
}

function LeaveInput(current_input,previus_search,label)
{
if (current_input.value == "")
   {
    current_input.value=label;
   }
}

function Test(myform,label)
{
if (myform[7].value==label)
	myform[7].value="";
}