<!--

	function openWindow(url,ttl,w,h,menus){
		if (menus=="1") {
			opts="resizable,scrollbars,toolbar"
		} else {
			opts="resizable,scrollbars"
		}

		if (w==null) w="400";
		if (h==null) h="450";
			
		winOpts="width="+w+",height="+h+","+opts
		var newWin=window.open(url,ttl,winOpts);
	}

// -->