<!-- 

var d=new Date();
var spclDir = "/Specials/";


var month=new Array(12);
month[0]="Jan";
month[1]="Feb";
month[2]="Mar";
month[3]="Apr";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="Aug";
month[8]="Sep";
month[9]="Oct";
month[10]="Nov";
month[11]="Dec";

var mnth = month[d.getMonth()];

var mthSpcl = spclDir + "Monthly_Special_" + mnth + ".asp";

openPage = function()
{ 
location.href = mthSpcl;
}

// -->
