Now I just asked about the topbar links on my site. Well, now the problem is another: add parameters to a url. Here is the code:
<script type="text/javascript">
function web(){
document.form.action = "http://www.google.com.br/search?q=";
}
function images(){
document.form.action = "http://www.google.com.br/search?q=";
}
function videos(){
document.form.action = "http://www.google.com.br/search?q=";
}
function news(){
document.form.action = "http://www.google.com.br/search?q=";
}
</script>
The Google search parameter for:
imagens: &tbm=isch
, vídeos: &tbm=vid
, notícias: &tbm=nws
.
How do I add these parameters to the url?