// Unframes you if framed
if (top != self) { top.location = self.location; } 

// image swapping on mouseOvers
function switchPic(imgBase, imgName) {
	if (document.images) {	   // Only if images supported
		imgEval = eval(imgName + ".src");
		document [imgBase].src = imgEval;
	}
}

// stat bar info 
function statBar(txt) {
	window.status = txt;
}

// last modified
function lastmod() {
	var theDate = "";
	theDate = document.lastModified;
	document.write("Last Modified: ");
	document.write(theDate);
}