function gotFocus(ctl,val)
{

    if(document.getElementById(ctl.id).value==val)
    {
        document.getElementById(ctl.id).value='';
    }
}
function lostFocus(ctl,val)
{
    if(document.getElementById(ctl.id).value=='')
    {
        document.getElementById(ctl.id).value=val;
    }
}
//function Check(f1)
//{
//    if(document.getElementById(f1.id).value=="Go")
//    {
//        //alert(document.getElementById(f1.id).value)
//        window.location.href="http://www.someplace.com/other.html";
//     }
//     if(document.getElementById(f1.id).value=="Search")
//     {
//        alert(document.getElementById(f1.id).value)
//     //window.location.href="http://localhost/fiveriverslatest/search.html";
//     }    
//     
//}
