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 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", "Other");
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;
}

function getPaperTypesSelectorHtml()
{
	var pt = "<select name='selectPaperType' id='selectPaperType' size='1'>";

	for(var i = 0; i < Paper.types.length; i++)
	{
		pt += "<option>" + Paper.types[i] + "</option>";
	}

	pt += "</select>";
	return pt;
}

var catagories = new Array("All", "Abstract", "Animals", "Black & White", "Buildings & Cityscapes",
	"Digital Art", "Events", "Flowers & Plants", "Ghost Towns", "Landscapes", "Misc",
	"National Parks", "Panoramas", "People at Work", "Places & Travel", "San Diego", "Ships",
	"Sunsets", "Trees", "Waterscapes");
function getCatagoriesSelectorHtml()
{
	var sh = "<select id='selectCatagory' size='1'>";

	for(var i = 0; i < catagories.length; i++)
	{
		sh += "<option>" + catagories[i] + "</option>";
	}

	sh += "</select>";
	return sh;
}