﻿
// ***************************** ****
// ****       Scripts for TIPS   ****
// ***************************** ****   

function urlList(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,aa,ab,ac,ad,ae,af,ag,ah,ai,aj) {
this[0]=a;
this[1]=b;
this[2]=c;
this[3]=d;
this[4]=e;
this[5]=f;
this[6]=g;
this[7]=h;
this[8]=i;
this[9]=j;
this[10]=k;
this[11]=l;
this[12]=m;
this[13]=n;
this[14]=o;
this[15]=p;
this[16]=q;
this[17]=r;
this[18]=s;
this[19]=t;
this[20]=u;
this[21]=v;
this[22]=w;
this[23]=x;
this[24]=y;
this[25]=z;
this[26]=aa;
this[27]=ab;
this[28]=ac;
this[29]=ad;
this[30]=ae;
this[31]=af;
this[32]=ag;
this[33]=ah;
this[34]=ai;
this[35]=aj;
 
}
function selectPage(list){
// select month page
var today = new Date();
var page = today.getMonth();
thism = new Array(12);
   thism[0] = "January";
   thism[1] = "February";
   thism[2] = "March";
   thism[3] = "April";
   thism[4] = "May";
   thism[5] = "June";
   thism[6] = "July";
   thism[7] = "August";
   thism[8] = "September";
   thism[9] = "October";
   thism[10] ="November";
   thism[11] ="December";

// open page
document.write("<a href=\" ");
document.write(list[page]); 
document.write("\" title=\"Monthly landscape TO DO tips\"><span class=\"bold\">");
document.write(thism[page]);
document.write(" <span class=\"yellow\">Landscape & Vegetable<\/span> Maintenance Tips<\/span><\/a><br \/>");
document.write("<a href=\" ");
document.write(list[page+12]); 
document.write("\" title=\"Monthly appearance of ornamental/tree pests\"><span class=\"bold\">");
document.write(thism[page]);
document.write(" Appearance of <span class=\"yellow\">Ornamental/Tree Pests<\/span><\/span><\/a><br \/>");
document.write("<a href=\" ");
document.write(list[page+24]); 
document.write("\" title=\"Monthly appearance of veggie pests\"><span class=\"bold\">");
document.write(thism[page]);
document.write(" Appearance of <span class=\"yellow\">Vegetable Pests<\/span><\/span><\/a><br \/>");
}
//define selection list
choices = new urlList("lm_sch.htm#jan",
                      "lm_sch.htm#feb",
                      "lm_sch.htm#mar",
                      "lm_sch.htm#apr",
                      "lm_sch.htm#may",
                      "lm_sch.htm#jun",
                      "lm_sch.htm#jul",
                      "lm_sch.htm#aug",
                      "lm_sch.htm#sep",
                      "lm_sch.htm#oct",
                      "lm_sch.htm#nov",
                      "lm_sch.htm#dec",
                      "sa_opest.htm#jan",
                      "sa_opest.htm#feb",
                      "sa_opest.htm#mar",
                      "sa_opest.htm#apr",
                      "sa_opest.htm#may",
                      "sa_opest.htm#jun",
                      "sa_opest.htm#jul",
                      "sa_opest.htm#aug",
                      "sa_opest.htm#sep",
                      "sa_opest.htm#oct",
                      "sa_opest.htm#nov",
                      "sa_opest.htm#dec",
                      "sa_vpest.htm#jan",
                      "sa_vpest.htm#feb",
                      "sa_vpest.htm#mar",
                      "sa_vpest.htm#apr",
                      "sa_vpest.htm#may",
                      "sa_vpest.htm#jun",
                      "sa_vpest.htm#jul",
                      "sa_vpest.htm#aug",
                      "sa_vpest.htm#sep",
                      "sa_vpest.htm#oct",
                      "sa_vpest.htm#nov",
                      "sa_vpest.htm#dec");
