
// navigation

function WO_onClickImage(url) {
	Window2=open("", "Image", '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.document.open();
		Window2.document.write("<BODY TOPMARGIN=0 LEFTMARGIN=0><IMG SRC='" + url + "'/></BODY>");
		Window2.document.close();
		//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+30, this.height+70);
}