	// JavaScript Document

	function zoomtoon(url,h) {
		winname = window.open(url,'myname','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=840,height='+h);
		return false;
	}
	
	function sharetoon(url) {
		winname=window.open(url,'myname','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=550');
		return false;
	}

	function popup(url,n,h,w) {
		hp = 0;
		vp = 0;
		if(screen){
			hp = (screen.width-w) / 2;
			vp = (screen.height-h) / 2;
		}
		winname=window.open(url, n,'width='+w+',height='+h+',left='+hp+',top='+vp+',scrollbars=yes,toolbar=no,menubar=no,resizable=no,statusbar=yes');
		windowstatus = 1;
		if (window.focus) { winname.focus(); }
	}

