function BookList1(typeid){
	$.ajax({
		url:"do_main.asp?action=1&typeid="+typeid+"&time"+new Date().toString(),
		type:'GET',
		success:function(){
			$('#showbooklist1').html(arguments[0]);
		}
	});
}

BookList1(1);

function BookList2(typeid){
	$.ajax({
		url:"do_main.asp?action=2&typeid="+typeid+"&time"+new Date().toString(),
		type:'GET',
		success:function(){
			$('#showbooklist2').html(arguments[0]);
		}
	});
}


function BookList3(typeid){
	$.ajax({
		url:"do_main.asp?action=3&typeid="+typeid+"&time"+new Date().toString(),
		type:'GET',
		success:function(){
			$('#showbooklist3').html(arguments[0]);
		}
	});
}

BookList3(1);

function YcList(){
	$.ajax({
		url:"t123.asp?time"+new Date().toString(),
		type:'GET',
		success:function(){
			$('#YcList').html(arguments[0]);
		}
	});
}

YcList();

function totle($newsid,$url){
	$.ajax({
		url:"do_news.asp?action=7&newsid="+$newsid+"&time"+new Date().toString(),
		type:'GET',
		success:function(){
				window.open(arguments[0],"_blank")
		}
	});
}
