var text=new Array();
text[0]="Frontier has Western Canada's largest selection of power options";
text[1]="Generator sets, pumps, industrial & marine engines, other products";
text[2]="Parts, service, and warranty info. After-hours contact info";
text[3]="Sales info, dealer network, tradeshows, reference info";
text[4]="How to call, fax, email or drive to our locations; about Frontier";
text[5]="Links to manufacturers' websites and other useful information";
text[6]="Order parts online and manage your Frontier account";
text[7]="Search our site using Google or our site map";
browser = navigator.appName;

function active(whichcell) {
if (document.all)
 { document.all.subtitle.innerHTML="<I>&nbsp;"+text[whichcell]+"</I>";}
else { document.getElementById('subtitle').innerHTML="<I>&nbsp;"+text[whichcell]+"</I>";}
}

function inactive(whichcell) {
if (document.all)
  { document.all.subtitle.innerHTML="&nbsp;"; }
else { document.getElementById('subtitle').innerHTML="&nbsp;";}
}