function ChangeMenu()
{

/*
var regular = new Array();
regular[0] = ['09','9 AM EST - 8 AM CST - 6 AM PST'];
regular[1] = ['10','10 AM EST - 9 AM CST - 7 AM PST'];
regular[2] = ['11','11 AM EST - 10 AM CST - 8 AM PST'];
regular[3] = ['12','Noon EST - 11 AM CST - 9 AM PST'];
regular[4] = ['13','1 PM EST - Noon CST - 10 AM PST'];
regular[5] = ['14','2 PM EST - 1 PM CST - 11 AM PST'];
regular[6] = ['15','3 PM EST - 2 PM CST - Noon PST'];
regular[7] = ['16','4 PM EST - 3 PM CST - 1 PM PST'];
regular[8] = ['17','5 PM EST - 4 PM CST - 2 PM PST'];
regular[9] = ['18','6 PM EST - 5 PM CST - 3 PM PST'];
regular[10] = ['19','7 PM EST - 6 PM CST - 4 PM PST'];
regular[11] = ['20','8 PM EST - 7 PM CST - 5 PM PST'];
*/

var weekend = new Array()
weekend[0] = ['11','11 AM EST - 10 AM CST - 8 AM PST'];
weekend[1] = ['12','Noon EST - 11 AM CST - 9 AM PST'];
weekend[2] = ['13','1 PM EST - Noon CST - 10 AM PST'];
weekend[3] = ['14','2 PM EST - 1 PM CST - 11 AM PST'];
weekend[4] = ['15','3 PM EST - 2 PM CST - Noon PST'];
weekend[5] = ['16','4 PM EST - 3 PM CST - 1 PM PST'];
weekend[6] = ['17','5 PM EST - 4 PM CST - 2 PM PST'];
weekend[7] = ['18','6 PM EST - 5 PM CST - 3 PM PST'];
weekend[8] = ['19','7 PM EST - 6 PM CST - 4 PM PST'];
weekend[9] = ['20','8 PM EST - 7 PM CST - 5 PM PST'];
weekend[10] = ['21','9 PM EST - 8 PM CST - 6 PM PST'];


//var selectedItem = document.theform.date_to_call.selectedIndex
//var Picker = document.theform.date_to_call.options[selectedItem].text

//var FindIt = /Fri\b/gi

var Times = new Array()
var CallTimes

//var document.theform.time_to_call = document.theform.time_to_call

CallTimes = weekend




	// Clear the old Menu
	var test = document.theform.time_to_call.options.length
	for (i=test; i>0; i--)
	{
		document.theform.time_to_call.options[i] = null
	}

	// Build the Option Object
	for (i=0; i<CallTimes.length; i++)
	{
		Times[i] = new Option(CallTimes[i][1],CallTimes[i][0])
	}

	// Create the new Menu
	for (i=0; i<Times.length; i++)
	{
		document.theform.time_to_call.options[i]= Times[i]
	}
	var lst = Times.length
}


function MenuList(Times)
{
	if (Times = false) {
		Times[0] = new Option("Select One","100")
	}

       	for (i=0; i<Times.length; i++)
       	{
              document.write("<option value='"+ Times[i].value +"'>" + Times[i].text + "</option>")

       	}
}
function DisEnableMenu()
{
	var is_checked = document.theform.now.checked;
	if (is_checked == true) {
		document.theform.date_to_call.disabled=true;
		document.theform.time_to_call.disabled=true;
	} else {
		document.theform.date_to_call.disabled=false;
		document.theform.time_to_call.disabled=false;
	}	
}

