<!-- DATE DISPLAYER //-->

var today, year, month, day;

today = new Date();

// return the year as yyyy instead of just yy
// 4 digit year instead of 2

function getFullYear(today){
	var n = today.getYear();
	n += 0000;
	return n;
}


// return the month of the year, 1 - 12

function getActualMonth(today){
	var n = today.getMonth();
	n += 1;
	return n;
}


// get the name string of the month
// e.g. 5 = June

function getCalendarMonth(today){
var n = today.getMonth();
var moy = new Array(12);
moy[0] = "January";
moy[1] = "February";
moy[2] = "March";
moy[3] = "April";
moy[4] = "May";
moy[5] = "June";
moy[6] = "July";
moy[7] = "August";
moy[8] = "September";
moy[9] = "October";
moy[10] = "November";
moy[11] = "December";
return moy[n];
}					
					
					
function writedate()
					
{
					
year = getFullYear(today);
month = getCalendarMonth(today);
day = today.getDate();
today=today.toLocaleString();
					 
//document.write(dayname);

document.write("<FONT COLOR=\"#BD283B\" SIZE=\"2\" FACE=\"Tahoma, Arial, sans-serif\">" + month + " " + day + " " + year + "<\/FONT>");
					

}







<!-- BREAK IN SCRIPTS //-->








<!-- MOUSEOVER //-->

var bolBrowserValid = false;

var strImgPath_Normal = "images/mouseovers/normal/"
var strImgPath_Selected = "images/mouseovers/selected/"

var strCurrentSelect = "null"

if ((navigator.appCodeName == 'Mozilla') && (navigator.appVersion.substring(0,1) > 2)) {bolBrowserValid = true;}
if ((navigator.appCodeName == 'MSIE') && (navigator.appVersion.substring(0,1) > 3)) {bolBrowserValid = true;}

if (bolBrowserValid) 
{
   remote_normal = new Image;
   remote_normal.src = strImgPath_Normal + "remote.gif";
   remote_selected = new Image;
   remote_selected.src = strImgPath_Selected + "remote.gif";

   remote2_normal = new Image;
   remote2_normal.src = strImgPath_Normal + "remote2.gif";
   remote2_selected = new Image;
   remote2_selected.src = strImgPath_Selected + "remote2.gif";

}

function ImageSwap(astrImageName) 
{
	if (bolBrowserValid) 
	{
		if (eval(astrImageName + "_normal.src") == document.images[astrImageName].src)
		{
			document.images[astrImageName].src = eval(astrImageName + '_selected.src');
		}
		else
		{
			if (strCurrentSelect != astrImageName)
			{
				document.images[astrImageName].src = eval(astrImageName + '_normal.src');
			}
		}
	}
}






<!-- BREAK IN SCRIPTS //-->








<!-- POPUP WEBCAM REMOTE WINDOW //-->



function selectCode(f){
document.forms[f].elements[0].focus();
document.forms[f].elements[0].select();
}
function popDemo(N) {
newWindow = window.open(N, 'popD','toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,width=321,height=255');
}


<!-- POPUP COMICS WINDOW //-->

function selectCode(f){
document.forms[f].elements[0].focus();
document.forms[f].elements[0].select();
}
function popComic(N) {
newWindow = window.open(N, 'popD','toolbar=no,menubar=no,resizable=yes,scrollbars=no,status=no,location=no,width=770,height=500');
}


<!-- POPUP PICS WINDOW //-->

function selectCode(f){
document.forms[f].elements[0].focus();
document.forms[f].elements[0].select();
}
function popPic(N) {
newWindow = window.open(N, 'popD','toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,width=700,height=495');
}