﻿
function DoHeaderSearch()
{
    //use prototype to get the field value
    var q = $("sitesearch").value;
    var url = "/search.aspx?q=" + q;
    window.location.href = url;        
    return false;
}
