<!--
function showPage(theURL) { //v1.0
  window.open(theURL,"show","toolbar=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=1,resizable=no");
}


var navWindow = null;
function startCloseup(where, width, height) {

	this.name = "main";
	if (navigator.appVersion.indexOf("X11") == 5) {
		var navWindow = window.open("","Closeup",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ width + ',height='+ height);
	} else {
		navWindow = window.open("","Closeup",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ width + ',height='+ height);
		navWindow.location =where;
	
		if (navigator.appVersion.indexOf('3.0') < 0) {
			var navWindow = window.open("","Closeup",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ width + ',height='+ height);
			navWindow.opener = self;
		}
	}
} 
// -->
