// You should not modify the function below, it reloads the window if Nav4 resizes //
function MM_reloadPage(init) { 
if (init==true) with (navigator) {
	if((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }
		}
	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
// This function is to emulate "File > Print". MS IE 5 Mac users get an alert box. //
function printIt(){ 
var ifMac=(navigator.platform.indexOf("ac") != -1);
if (document.all && ifMac) {alert("We are sorry but the print stylesheet function is not available for MSIE Mac users.\nYou have to Select \"Print\" from the file menu or use [apple] + \"P\"")}
else{if(window.print) window.print();}
}

function TJKpopup(zaref,w,h){     // Thierry Koblentz (c) 2005 - www.TJKDesign.com //
// This short script opens a browser window and loads the href value of the anchor //
// from where the function is called. For example, you would use the function like //
// this: <a href="link2open.htm" onclick="return TJKpopup(this,400,300)">Popup</a> //
// The 2 last parameters (400 & 300) are the width and height of your custom popup //
// You can pass any values you want. See below how to customize the other settings //
// The first statement centers the popup horizontally. The reference is the screen //
// and not the viewport. You may replace the value with a number but do not remove //
// the line altogether because that variable ("left") is used later in the script. //
var left = (screen.availWidth-w)/2;	// X coordinate, may be replaced with a number //
var top = 20;	 					// Y coordinate //
	settings += "scrollbars=yes,";   // yes or no //
	settings += "toolbar=no,";		// yes or no //
	settings += "location=no,";		// yes or no //
	settings += "menubar=no,";		// yes or no //
	settings += "status=no,";		// yes or no //
	settings += "resizable=yes";	// yes or no //
// * There is nothing to edit below this line * //
// ******************************************************************************* //
var settings = "width="+w+",height="+h+",top="+top+",left="+left+","; 
window.open(zaref.href,'zWin',settings);
return false;
}