<!-- begin the phone numbers


/***********************************************
* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
***********************************************/

//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]="<b>(Please select your country)</b>"
thetext1[1]="<b>1300 552 351 for tariff calls</b>* <br>Call <b>1902 213 496 for credit card calls</b>^" //australia
thetext1[2]="<b>0900 33 405 for tariff calls</b>* <br>Call <b>0800 110 241 for credit card calls</b>^" //NZ
thetext1[3]="<b>+1800 519 7550 for credit card calls</b>*"//USA

var thetext2=new Array()
thetext2[0]=""
thetext2[1]="*Calls charged at A$5.45/min. including GST. Higher mobile/payphones. Readings for guidance only.<br>^Calls charged at A$4.50/min. including GST. for credit card payments. Higher mobile/payphones. Readings for guidance only."//aus
thetext2[2]="*Calls charged at NZ$4.95/min. Higher mobile/payphones. Readings for guidance only. <br>^Calls charged at NZ$4.95/min. for credit card payments. Higher mobile/payphones. Readings for guidance only."//nz
thetext2[3]="*Calls charged at US$2.99/min. Higher mobile/payphones. Readings for guidance only."//US

// Now, see 2) below for final customization step

function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}

//   This function displays the initial description for the selected menu item

//var displaydesc(document.form1.select1, thetext1, 'textcontainer1');
//var displaydesc(document.form1.select1, thetext2, 'textcontainer2');

// end phone numbers-->


