function clearsearch(url){
    var q=document.getElementById('q').value;
    location.href=url+'?q='+q.replace(/\?/g,'');
    return false;
}

