var AjaxServerPageName;
var PrimaryID;
var SecondaryID;
var ElementsByTagName;
var DefaultText;
var DefaultValue;

AjaxServerPageName = "AjaxServer.aspx";

function setVariables(i)
{
 if(i==1)
 { AjaxServerPageName = "/countyserver.aspx?";
   PrimaryID = "ctl00_Maincontent_UserRegistration1_ddlState";
   SecondaryID = "ctl00_Maincontent_UserRegistration1_ddlCounty";
   ElementsByTagName = "county";
   DefaultText = "Select County";
   DefaultValue = "Select County";
 }
 if(i==2)
 { AjaxServerPageName = "/countyserver.aspx?";
   PrimaryID = "UrgentProfile1_ddlState";
   SecondaryID = "UrgentProfile1_ddlCounty";
   ElementsByTagName = "county";
   DefaultText = "Select County";
   DefaultValue = "";
 }
 if(i==3)
 { AjaxServerPageName = "/countyserver.aspx?type=search&";
   PrimaryID = "ctl00_State";
   SecondaryID = "ctl00_County";
   ElementsByTagName = "county";
   DefaultText = "Select";
   DefaultValue = "Select";
 }
 if(i==4)
 { AjaxServerPageName = "/countyserver.aspx?type=search&";
   PrimaryID = "ctl00_Maincontent_SearchCountyCombo1_ddlState";
   SecondaryID = "ctl00_Maincontent_SearchCountyCombo1_ddlCounty";
   ElementsByTagName = "county";
   DefaultText = "Select";
   DefaultValue = "";
 }

}
