<!--
function showImage(page,file,id){
	var w = 440;
	var h = 480;
	
	if (window.screen.availWidth) {
		var sw = window.screen.availWidth;
		var sh = window.screen.availHeight;
	} else if (window.screen.width) {
		var sw = window.screen.width;
		var sh = window.screen.height;
	} else {
		var sw = 800;
		var sh = 600;
	}
	var l = Math.floor((sw - w) / 2);
	var t = Math.floor((sh - h) / 2);
	
	window.open("showImage.asp?page="+page+"&file="+file+"&id="+id+"", "gallery", "width=" + w + ", height=" + h + ", left = " + l + ", top = " + t + ",directories=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}
function pageTools(input){
	document.getElementById("display").innerHTML = input;
}
function mailTo(username,hostname,ext){
	location.href = "mailto:"+username+"@"+hostname+"."+ext+"";
}
self.focus();
//-->
