Замени
location.href = url
на
window.open(url)
например
if (s == "gwap") {location.href = "http://www.google.com/xhtml/search?channel=bh&mrestrict=xhtml&site=mobile&q="+ ;}
на
if (s == "gwap") {window.open("http://www.google.com/xhtml/search?channel=bh&mrestrict=xhtml&site=mobile&q="+ t);}
|