Body [quote="Cerebral"]Re: Null Knowledge. I wrote this email to the "Contact Us" link on the left, but figured I may as well write it here too. ---------- Saw your post about Null Knowledge on the Comic-Nation main-page. Took a quick look at their scripts, and it doesn't seem too complicated. The website loads "./javascript/select_v03.js?maxweek=4" in the header. Inside select_v03.js, there are a few variables of importance: var maxweek = 4; var maxyr = 9; var maxmon = 26; var minyr = 8; var currentyr = maxyr; var currentmon = maxmon; var currentday = maxweek; var currentFileMon= 0; When the file is first loaded, it sets the current year/month/day to the maximum year/month/week (bad variable naming, but blah). Then, in the loadpics() function (which is called in the body's onload), it sets the document's main image to document.images['main'].src= 'images/nullknowledge/'+ (currentyr) + '/' +(currentFileMon) + '/' + (currentday) +'.gif' ; I would suspect, to check for updates to the comic, that it's sufficient to check for updated values of the variables maxweek, maxyr, and maxmon inside that script (while simultaneously checking the script tag in the header for these variables, since he seems to like to set it in the src URL). Hope this helps. -------------------[/quote]