
newWin = false;
function openWindow(TheURL) {
	if (newWin && !newWin.closed){
		newWin.location.href=TheURL;
		newWin.focus();
	}
	else {
		newWin = window.open(TheURL, "about", "width=500px, height=600px, left=0, top=0, chromeless=1");
	}
}

var imgWidth = 0;
function resizeImage(docImage)
{
	if (imgWidth == 0)
		imgWidth= xWidth(docImage);
	var oldSrc = docImage.src
	var smWidth = 500;
	
	var winWidth = window.innerWidth || document.body.clientWidth
	
	if (winWidth < 1000)
		docImage.src = "/resize.php?gdver=2&src="+oldSrc+"&width="+smWidth+"&height=99999";
			
	return true;
}

function matureWarning(url){
	if (confirm ("WARNING: This site does contain mature themes and/or foul language that may be inappropriate for younger readers. Are you sure you wish to continue?"))
		window.open(url);
}