<!--
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;
	}
}

} 
// -->
