// JavaScript Document


function showdiv(pass) {
var divs = document.getElementsByTagName('div');
for(i=0;i<divs.length;i++){
if(divs[i].id.match(pass)){//if they are 'see' divs
if (document.getElementById) // DOM3 = IE5, NS6
divs[i].style.visibility="visible";// show/hide
else
if (document.layers) // Netscape 4
document.layers[divs[i]].display = 'visible';
else // IE 4
document.all.divs[i].visibility = 'visible';
} 
}
}

function hidediv(pass) {
var divs = document.getElementsByTagName('div');
for(i=0;i<divs.length;i++){
if(divs[i].id.match(pass)){//if they are 'see' divs
if (document.getElementById) // DOM3 = IE5, NS6
divs[i].style.visibility="hidden";// show/hide
else
if (document.layers) // Netscape 4
document.layers[divs[i]].display = 'hidden';
else // IE 4
document.all.divs[i].visibility = 'hidden';
} 
}
}
  

function rapidfire() {
 
setTimeout("showdiv('words1')", 500);
setTimeout("showdiv('words2')", 1000);
setTimeout("showdiv('words3')", 1500);
setTimeout("showdiv('words4')", 2000);
setTimeout("showdiv('words6')", 2500);
setTimeout("showdiv('words8')", 3000);
setTimeout("showdiv('words5')", 3500);
setTimeout("showdiv('words7')", 4000);
setTimeout("showdiv('words9')", 5000);

}

function delayer(){
    window.location = "/home/"
}

wa_account="949ECCCFCECE9A92"; wa_location=201;
wa_pageName=location.pathname;  // you can customize the page name here
document.cookie='__support_check=1;path=/';wa_hp='http';
wa_rf=document.referrer;wa_sr=window.location.search;
wa_tz=new Date();if(location.href.substr(0,6).toLowerCase()=='https:')
wa_hp='https';wa_data='&an='+escape(navigator.appName)+ 
'&sr='+escape(wa_sr)+'&ck='+document.cookie.length+
'&rf='+escape(wa_rf)+'&sl='+escape(navigator.systemLanguage)+
'&av='+escape(navigator.appVersion)+'&l='+escape(navigator.language)+
'&pf='+escape(navigator.platform)+'&pg='+escape(wa_pageName);
wa_data=wa_data+'&cd='+
screen.colorDepth+'&rs='+escape(screen.width+ ' x '+screen.height)+
'&tz='+wa_tz.getTimezoneOffset()+'&je='+ navigator.javaEnabled();
wa_img=new Image();wa_img.src=wa_hp+'://counter.hitslink.com/statistics.asp'+
'?v=1&s='+wa_location+'&eacct='+wa_account+wa_data+'&tks='+wa_tz.getTime();
document.cookie='__support_check=1;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT';
document.getElementById('wa_u').src=wa_hp+'://counter.hitslink.com/track.js';


 