﻿var JSDate = function() {this.monthsShortName = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];this.monthsLongName = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];};JSDate.prototype.getMonthShortName = function(month) {return this.monthsShortName[month];};JSDate.prototype.getMonthLongName = function(month) {return this.monthsLongName[month];};JSDate.prototype.getDateLabel = function(day, month, bgColor, foreColor) {return '<div style="font-family:verdana; font-size:10px; background-color:' + bgColor + ';color:' + foreColor + '; width:32px; height:32px;text-align:center;">' + this.getMonthShortName(month) + '<br />' + day + '</div>';};function OpenWindow(url,width,height){if(width && height){window.open(url,'_blank',"width="+width+",height="+height+",status=no,toolbar=no,menubar=no,location=no,resizable=no"); return false;}else{window.open(url,'_blank'); return false;}}
