var threeTariffArray = new Array;

threeTariffArray[0] = new Array;
threeTariffArray[0][0] = " &gt; Price Plan Guide";
threeTariffArray[0][1] = "index.php";

threeTariffArray[1] = new Array;
threeTariffArray[1][0] = " &gt; Talk and Text Price Plans";
threeTariffArray[1][1] = "talkandtext.php";

threeTariffArray[2] = new Array;
threeTariffArray[2][0] = " &gt; VideoTalk Price Plans";
threeTariffArray[2][1] = "videotalk.php";

threeTariffArray[3] = new Array;
threeTariffArray[3][0] = " &gt; ThreePay Price Plans";
threeTariffArray[3][1] = "threepay.php";

function goTo() {
	if (document.mshop.threeTariff.value != "") {
		window.location.href=document.mshop.threeTariff.value;
	}
}


var z = 0;

for (z = 0; z < threeTariffArray.length; z++) {
	document.write("<option value=\""
		+ threeTariffArray[z][1] + "\">"
		+ threeTariffArray[z][0] + "</option>");
}
