//Array of officers of the club.  11 x positions, name, phones, email ID, email ISP
//Used in meet_officers.htm
var Officers = [
["President:","Pete Moloney","home 9844 2249, mobile 0409 182 375<br>","moloneyep","bigpond.com"],
["Secretary:","Ian Abell","home 9879 4367, mobile 0419 396 816<br>","ian","abell.ws"],
["Treasurer:","Danny Pennacchio","home 9844 1082, mobile 0438 324 437<br>","dannyp","ftech.com.au"],
["1st Vice President:","Bill Gerritsen","home 9434 3270, work 9432 5166<br>mobile 0429 325 166<br>","bill.gerritsen","bigpond.com.au"],
["2nd Vice President:","Geoff Taylor","home 9844 2041, mobile 0428 319 478<br>","taylorfamily","netspace.net.au"],
["3rd Vice President:","Liz Prewett","home 9844 5031, work 9844 4392<br>fax 9844 5031<br>","prewettb","ozemail.com.au"],
["Immediate Past President:","Lauri Hilakari","home 9840 7335, mobile 0419 594 366<br>","lhilakari","hotmail.com"],
["Tail Twister:","David Englefield","home 9435 7263, work 9435 7263<br>","djandcje","optusnet.com.au"],
["Lion Tamer:","Brian Wales","home 9844 1986, mobile 0416 629 011<br>","diss","alphalink.com.au"],
["Membership Chairman:","Garry Clues","home 9436 8352, work 0416 220 650<br>fax 9436 8352<br>","clues","pacific.net.au"],
["Public Officer:","David Dobbs","home 9872 4515, work 9872 5822<br>fax 9872 5129, mobile 0413 669 399<br>","david","haldatec.com.au"]
]

//Array of member names and awards. Note no comma after last sub array
//Used in presiden.htm Members section
var Member = [
["Ian", "Abell", "(L)(C)(MJF)(LVA)"],
["Trevor", "Barr", "(JDR)"],
["John", "Baxter", ""],
["Charles", "Brincat", ""],
["John", "Boyle", ""],
["Ron", "Cuthbert", "(MJF)(L)"],
["Dominic", "Cruz", ""],
["Jayant", "Dagore", ""],
["Garry", "Clues", "(JMA)"],
["David", "Dobbs", "(MJF)(JDR)"],
["Bill", "Gerritsen", ""],
["George", "Girgis", ""],
["Lauri", "Hilakari", ""],
["Geoffrey", "Wood", ""],
["Peter", "Watts", "(C)(JDR)(MJF)"],
["Brian", "Wales", "(LVA)"],
["Chris", "Viney", ""],
["Geoffrey", "Taylor", "(LVA)(WTF)"],
["David", "Tapper", ""],
["Daniel", "Singh", ""],
["Ian", "Shugg", "(L)"],
["Carl", "Sanders", "(JDR)"],
["Tony", "Rowe", ""],
["Denis", "Robertshaw", "(LVA)(JDR)"],
["Dieter", "Retz", "(MJF)(LVA)(JMA)"],
["Liz", "Prewett", ""],
["Danny", "Pennacchio", ""],
["John", "Mitton", ""],
["Pete", "Moloney", ""],
["John", "Papas", ""],
["David", "Englefield", ""],
["Andrew", "Follows", ""],
["Robert", "Klay", ""],
["Garry", "Miller", ""],
//["Malcolm", "Gordon", ""],
["Andrew", "Crossley", ""],
["Greg", "McNamara", ""],
["Robyn", "Wheatley", ""]
]
//Used to sort array in ascending order of surnames
function mySorting(a,b) {
	a = a[1];
	b = b[1];
	return a == b ? 0 : (a < b ? -1 : 1);
}
function mail(account, domain, realname)
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "'><img border='0' src='images/mail.gif' \
    alt='[EMail]' width='15' height='12' /><font color='#660099'>" + realname + "</font></a>");
}

function xmail(account, domain)
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "'><img border='0' src='images/mail.gif' \
    alt='[EMail]' width='15' height='12' /><font color='#660099'>" + account + "&#64;" + domain + "</font></a>");
}
//
//  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "'><img border='0' src='mail.gif' \
//    alt='[EMail]' width='15' height='12' /><font color='#660099'>" + account + "<img align=middle border='0' src='at-1.gif' \
//    alt='@' width='15' height='15' />" + domain + "</font></a>");

function Login(){
var done=0;
var ntrikey=document.login.password.value;
ntrikey=ntrikey.toLowerCase();
if (ntrikey==unescape("%73%65%74%75%6E%69%6D")) { window.location="procedures.htm"; done=1; }
if (done==0) { window.location="index.htm"; }
}
function setFocus() {
document.login.password.focus();
}
function newWindow(url, height, width) {
    nameW='feature'
 if (navigator.appVersion.indexOf('4') != -1) {
 // Vars for centering the new window on Version 4 Browsers
 xTop = screen.width/2 - (width/2);
 yTop = screen.height/2 - (height/2);
 window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,\
 resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,\
 left=' + xTop + ',top=' + yTop + '');
 } else {
 window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,\
 resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,\
 left=150,top=200');
 }
}
