
// navigation
function onClickLogo(url) {
	Window2=open("", "Logo", 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes');
	if (Window2 != null) {
		if (Window2.opener == null) {
			Window2.opener = self;
		}
		Window2.location.href=url;
		var x = new Image();
		x.onload = resizepopup;
		x.src = url;
		
		if (Window2.focus) Window2.focus();
	}	
}

function resizepopup() {
	Window2.resizeTo(this.width+40, this.height+50);
}