function writeDate()
{
	todayDate = new Date();
	workDate = todayDate.toString();
	year = todayDate.getYear();

	if (navigator.appName == "Netscape")
	{
		year += 1900;
	}

	document.write(workDate.substring(0,3) + ", " + todayDate.getDate() + workDate.substring(7,3) + ", " + year);
}

function copyright()
{
	now = new Date();
	year = now.getYear();

	if (navigator.appName == "Netscape")
	{
		year += 1900;
	}

	document.write("All content on this web site copyright © 2000-" + year + " Dotquake Web Services unless otherwise stated. All rights reserved.");
}

function setMarquee(title)
{
	if (navigator.appName != "Netscape")
	{
		marquee.innerHTML = "<marquee align=\"middle\" behavior=\"slide\" scrollamount=\"100\" scrolldelay=\"0\" border=\"0\">" + title + "</marquee>";
	}
}

function setStatus(text)
{
	window.status = text;
	return true;
}

function setStatusNull()
{
	window.status = "";
	return true;
}

function popDisplay(source, name, location, directories, status, menubar, scrollbars, resizable, copyhistory, width, height)
{
	propString = "location=" + location + ", directories=" + directories + ", status=" + status + ", menubar=" + menubar + ", scrollbars=" + scrollbars + ", resizable=" + resizable + ", copyhistory=" + copyhistory + ", width=" + width + ", height=" + height;
	window.open(source, name, propString);
}