﻿// JScript File
function SearchDevCentral(id)
{
    var txtCtrl = document.getElementById(id);
    //alert("Searching devCentral for " + txtCtrl.value);
    var query = "http://devcentral1.mondosearch.com/cgi-bin/MsmFind.exe?QUERY=" + txtCtrl.value + "&NO_DL=X&USERNAME=Anonymous";
    //document.location.href = query;
    window.open(query,"mywindow");
    
    return false;    
}

function SearchAnswerCenter(id)
{
    var txtCtrl = document.getElementById(id);
    //alert("Searching devCentral for " + txtCtrl.value);
    var query = "http://www.wireless.att.com/answer-center/main.jsp?_dyncharset=UTF-8&_dynSessConf=3722814689283352279&t=searchTab&dosearch=true&locale=en_US&_dyncharset=UTF-8&searchstring=" + txtCtrl.value + "&searchText=&opentopic=0&SearchButton.x=41&SearchButton.y=14";
    //document.location.href = query;
    window.open(query,"mywindow");
    
    return false;    
}
