var states = new Array("AL","AK","AZ","AR","CA","CO","CT","DE","FL","GA","HI","ID","IL","IN","IA","KS", "KY","LA","ME","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR", "PA","RI","SC","SD","TN","TX","UT","VT","VA","WA","WV","WI","WY");
function getStateSelectorHtml(){
	var ssHtml="<select name=selectState id=selectState size=1 >";
	for(var i=0;i<states.length;i++)ssHtml+="<option>"+states[i]+"</option>";
	ssHtml+="</select>";
	return ssHtml;
}
var ccTypes=new Array("American Express","Discover","Master Card","Visa");
function getCCTypeSelectorHtml(){
	var cct="<select name=selectCCType id=selectCCType size=1>";
	for(var i=0;i<ccTypes.length;i++)cct+="<option>"+ccTypes[i]+"</option>";
	cct+="</select>";
	return cct;
}
var ccExpMonths=new Array("01","02","03","04","05","06","07","08","09","10","11","12");
function getCCExpMonthSelectorHtml(){
	var ccem="<select name=selectCCExpMonth id=selectCCExpMonth size=1>";
	for(var i=0;i<12;i++)ccem+="<option>"+ccExpMonths[i]+"</option>";
	ccem+="</select>";
	return ccem;
}
function getCCExpYearSelectorHtml(){
	var nowDate=new Date();
	var startYear=nowDate.getFullYear();
	var ccey="<select name=selectCCExpYear id=selectCCExpYear size=1>";
	for(var i=0;i<12;i++)ccey+="<option>"+(startYear+i)+"</option>";
	ccey+="</select>";
	return ccey;
}
var months=new Array("January","February","March","April","May","June","July","August","September", "October","November","December");
function getMonthsSelectorHtml(){
	var mhtml="<select name=selectMonth id=selectMonth size=1>";
	for(var i=0;i<12;i++)mhtml+="<option>"+months[i]+"</option>";
	mhtml+="</select>";
	return mhtml;
}
function getDaysSelectorHtml(){
	dhtml="<select name=selectDay id=selectDay size=1>";
	for(var i=0;i<31;i++)dhtml+="<option>"+(i+1)+"</option>";
	dhtml+="</select>";
	return dhtml;
}
var standardTimes=new Array("Morning","Afternoon","Evening");
function getStandardTimesSelectorHtml(){
	sthtml="<select name=selectStandardTime id=selectStandardTime size=1>";
	for(var i=0;i<standardTimes.length;i++)sthtml+="<option>"+standardTimes[i]+"</option>";
	sthtml+="</select>";
	return sthtml;
}
var phoneTypes=new Array("Home","Cell","Office");
function getPhoneTypesSelectorHtml(){
	var pt="<select name=selectPhoneType id=selectPhoneType size=1>";
	for(var i=0;i<phoneTypes.length;i++)pt+="<option>"+phoneTypes[i]+"</option>";
	pt+="</select>";
	return pt;
}
function getQuantitySelectorHtml(){
	qs="<select name=selectQty id=selectQty size=1>";
	for(var i=0;i<10;i++)qs+="<option>"+(i+1)+"</option>";
	qs+="</select>";
	return qs;
}