I have a 12 page document with an image of each month from a typical calendar on each page. I want javascript code to open the document at each month depending on the date of the year when the document is opened; for example, if a user opens the calendar throughout the month of July, the document opens to page 7, when the user opens the document during the month of August, the document opens on page 8, etc., etc., throughout the year. Any thoughts?
// go the the zero based page using the month value from the current date - 1
this.pageNum = util.printd("m", new Date()) - 1;
George Kaiser