function setSearchValue(value) {
    var obj = document.getElementById('searchwith');
    obj.value = value;
}

function searchaction(search)
{
  var keyword = search.inputquery.value;
  var option = search.searchwith.value;
  if(option == "Caller Tunes")
  {
    window.open('https://ct.digi.com.my/index.do?keyword_string='+keyword, '_blank', 'width=800,height=600,resizable=yes,scrollbars=yes');
//    window.open('http://ct.digi.com.my/prbt/web/servletMallSearch.webdo?query='+keyword+'&service=&location=&x=25&y=7', '_blank', 'width=800,height=600,resizable=yes,scrollbars=yes');
    return false;
  }
  else if(option == "All Music & Graphics")
  {
    window.location = '/downloads/downloads/downloads.do?keyword='+keyword+'&bySearch=true';
    return false;
  }
  else if(search.searchwith.selectedIndex >= 5 && search.searchwith.selectedIndex <= 12)
  {
    window.location = '/downloads/downloads/downloads.do?keyword='+keyword+'&bySearch=true&searchItemType='+option;
    return false;
  }
  else if(search.searchwith.selectedIndex == 13)
  {
    window.location = '/downloads/games/games.do?cat=apps&subcat=search&query='+keyword;
    return false;
  }
  else
  {
    return true;
  }
}

function searchaction2()
{
  var keyword = document.searchFrm.inputquery.value;
  var option = document.searchFrm.searchwith.value;
  if(option == "Caller Tunes")
  {
    window.open('https://ct.digi.com.my/index.do?keyword_string='+keyword, '_blank', 'width=800,height=600,resizable=yes,scrollbars=yes');
    //window.open('http://ct.digi.com.my/prbt/web/servletMallSearch.webdo?query='+keyword+'&service=&location=&x=25&y=7', '_blank', 'width=800,height=600,resizable=yes,scrollbars=yes');
    return false;
  }
  else if(option == "All Music & Graphics")
  {
    window.location = '/downloads/downloads/downloads.do?keyword='+keyword+'&bySearch=true';
    return false;
  }
  else if(option == "RT" || option == "TT" || option == "WPCL" || option == "PL" || option == "VT" || option == "PM" || option == "THM" || option == "SSCL")
  {
    window.location = '/downloads/downloads/downloads.do?keyword='+keyword+'&bySearch=true&searchItemType='+option;
    return false;
  }
  else if(option == "GAMES")
  {

    //window.location = '/downloads/games/games.do?cat=apps&subcat=search&query='+keyword;
    window.location = 'http://games.digi.com.my/index.php?m=main&c=show_search_result&strKeywords='+keyword;
    return false;
  }
  else
  {
    document.searchFrm.submit();
  }
}
