functionsearchFunction(){
varsearchInput=document.getElementById(‘search’).value;
if(searchInput==””){
alert(“Please enter a keyword to search”);
return false;
}
url=”http://jgateplus.com/search/search/?q=”+searchInput
+”&reqInitiator=basic”+”&selectedSubjects=5%2C4%2C1%2C6%2C2%2C3%2C7%2C8%2C9%2C
10&resourceType=1&peerReviewedJournal=true&professionalIndustryJournal=2″;
window.open(url, ‘_blank’);
}