function displayToggle(who) { if (who.style.display == "") who.style.display = "none"; else who.style.display = ""; } function init() { apr2002.style.display = "" mar2002.style.display = "none" feb2002.style.display = "none" jan2002.style.display = "none" december2001.style.display = "none" november2001.style.display = "none" october2001.style.display = "none" september2001.style.display = "none" july2001.style.display = "none" june2001.style.display = "none" may2001.style.display = "none" } function display(moo) { moo.style.display = ''; } function hide(moo) { moo.style.display = 'none'; } function toggle(moo) { if (moo.style.display == 'none') { moo.style.display = ''; } else { moo.style.display = 'none'; } } function getWholeCookie(whichDoc,offset) { var endstr = whichDoc.cookie.indexOf(";",offset); if (endstr == -1) endstr = whichDoc.cookie.length; return unescape(whichDoc.cookie.substring(offset,endstr)); } function getCookie(whichDoc,name) { var arg = name + "="; var alen = arg.length; var clen = whichDoc.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (whichDoc.cookie.substring(i,j) == arg) { return getWholeCookie(whichDoc,j); } i = whichDoc.cookie.indexOf(" ",i) + 1; if (i == 0) break; } return null; } function saveCookie(whichDoc,name,value) { var argv = arguments; var argc = arguments.length; var expires = (argc > 3) ? argv[3]: null; var path = (argc > 4) ? argv[4]: null; var domain = (argc > 5) ? argv[5]: null; var secure = (argc > 6) ? argv[6]: false; var result = name + "=" + escape(value); if (expires != null) result += ";expires=" + expires.toGMTString(); if (path != null) result += ";path=" + path; if (domain != null) result += ";domain=" + domain; if (secure == true) result += ";secure"; whichDoc.cookie = result; } function deleteCookie(whichDoc,name) { var exp = new Date(); exp.setTime(exp.getTime() - 1); if (getCookie(whichDoc,name) != null) { whichDoc.cookie = name + "=" + getCookie(whichDoc,name) + "; expires=" + exp.toGMTString(); } } function MM_checkBrowser(NSvers,NSpass,NSnoPass,IEvers,IEpass,IEnoPass,OBpass,URL,altURL) { //v1.2 var newURL = '', version = parseFloat(navigator.appVersion); if (navigator.appName.indexOf('Netscape') != -1) { if (version >= NSvers) {if (NSpass>0) newURL = (NSpass==1)?URL:altURL;} else {if (NSnoPass>0) newURL = (NSnoPass==1)?URL:altURL;} } else if (navigator.appName.indexOf('Microsoft') != -1) { if (version >= IEvers) {if (IEpass>0) newURL = (IEpass==1)?URL:altURL;} else {if (IEnoPass>0) newURL = (IEnoPass==1)?URL:altURL;} } else if (OBpass>0) newURL = (OBpass==1)?URL:altURL; if (newURL) { window.location = unescape(newURL); document.MM_returnValue = false; } }