function gotopage(cx, ie, q) {
   var str=q.value;
   var sc=new Array();
   var str1;
  
   sc=str.split(" ");
   if(sc.length-1 > 0)
  { str1=sc[0]+'-'+sc[1];}
   else { str1=str;}
    window.location = "SearchResults.aspx?cx="+cx+"&ie="+ie+"&q="+str1+"&sa=Search";
    //window.location = "http://www.google.com/cse?cx=" + cx + "&ie=" + ie + "&q=" + q.value + "&sa=Search";        
    return false;
}


