// JavaScript Document


function optionSelected()
	{
	var shortcut = document.combowithtext;
	if (shortcut.example.options[shortcut.example.selectedIndex].value == "##blankOptionCall")// mozilla fix
		{
		showtext();
		return false;
		}
	else if (shortcut.example.options[shortcut.example.selectedIndex].value == "#blankOptionCall")
		{
		showtext();
		return false;
		}
	else
		location=shortcut.example.options[shortcut.example.selectedIndex].value;
	}

function goPushed()
	{
	var shortcut = document.combowithtext;
	if (shortcut.example.options[shortcut.example.selectedIndex].value == "##blankOptionCall")// mozilla fix
		{
		showtext();
		return false;
		}
	else if (shortcut.example.options[shortcut.example.selectedIndex].value == "#blankOptionCall")
		{
		showtext();
		alert("Please select a specific tool.  Hit enter or click 'OK' to continue");
		return false;
		}
	else
		location=shortcut.example.options[shortcut.example.selectedIndex].value;
	}

function showtext()
	{
	
	//extend this list if neccessary to accomodate more selections -- this is for the window status thingy at the bottom
	var descriptions = new Array();
	
	descriptions[0]="******Select Shipping Tool******"
	descriptions[1]="Select Shipping Tool"
	descriptions[2]="Select Shipping Tool"
	descriptions[3]="Customer Specific Rate Quotes"
	descriptions[4]="Public On-Line Rate Quotes"
	descriptions[5]="Freight Bill Register"
	descriptions[6]="Density Calculator"
	descriptions[7]="Select Shipping Tool"
	descriptions[8]="Select Shipping Tool"
	descriptions[9]="Downloadable Forms"
	descriptions[10]="Document Viewer"
	descriptions[11]="Select Shipping Tool"
	descriptions[12]="Select Shipping Tool"
	descriptions[13]="Shipment Tracking"
	descriptions[14]="Pick-up Request"
	descriptions[15]="Select Shipping Tool"
	descriptions[16]="Select Shipping Tool"
	descriptions[17]="Service Area &amp; Service Centers"
	descriptions[18]="Service Reports"
	descriptions[19]="Service Inquiry"
	descriptions[20]="Safety"
	descriptions[21]="Select Shipping Tool"
	descriptions[22]="Log Out"

	
	
	var shortcut = document.combowithtext;
	window.status=descriptions[shortcut.example.selectedIndex]
	
	
	}
