// JavaScript Document


function clickclear(thisfield) {
     if (thisfield.value == 'Search') {
          thisfield.value = "";
     }
}

function clickrecall(thisfield) {
     if (thisfield.value == "") {
          thisfield.value = 'Search';
     }
}

NS4 = (document.layers) ? true : false;

function checkEnter(event, xform)
{     
    var code = 0;
    
    if (NS4)
        code = event.which;
    else
        code = event.keyCode;
        
     //alert(code);
        
    if (code==13){
     
        xform.action="/fm/search/";
        xform.submit();
        
     }
}

