function onClickDl(dlname) {								 	new Ajax.Request(								 		"ajaxIncDl.php?dlname="+encodeURI(dlname),								 		{								 			method:"get",								 			onComplete:function(xhr) {								 				var res = xhr.responseText;								 				if (res == "ok") {								 					document.location = "dl/" + dlname;								 				}								 			}								 		}								 	);								 }