Quick Search Form
" )
this.wwriteA( "
" )
this.wwriteA( this.gMonthName + " " + this.gYear );
this.wwriteA( "" );
// Show navigation buttons
var prevMMYYYY = this.calcMonthYear( this.gMonth, this.gYear, -1 );
var prevMM = prevMMYYYY[0];
var prevYYYY = prevMMYYYY[1];
var nextMMYYYY = this.calcMonthYear( this.gMonth, this.gYear, 1 );
var nextMM = nextMMYYYY[0];
var nextYYYY = nextMMYYYY[1];
this.wwrite( "
| " );
/* this.wwrite( "<<<\/a> | " );
*/
// Show the link of previus month or not if the month is less than NowMonth
if (this.gMonth == this.gNowMonth && this.gYear == this.gNowYear){
this.wwrite("< | " );
} else {
this.wwrite( "<<\/a> | " );
}
this.wwrite( "" + Calendar.today + "<\/a> | " );
// Show the link of next month or not if the month is more than NowMonth + 1 Year
if (this.gMonth == this.gNowMonth && (this.gYear == this.gNowYear + 1) ) {
this.wwrite( "><\/a> |
" );
} else {
this.wwrite( "
><\/a>
" );
}
/* To uncomment if the next/prev year want to be visible! =======.
this.wwrite( "><\/a>" );
this.wwrite( ">><\/a> | " );
*/
// Get the complete calendar code for the month..
vCode = this.getMonthlyCalendarCode();
this.wwrite( vCode );
this.wwrite( "