$(document).ready(function(){
	$("#ajaxscore").ready(function(){
		$.ajax({
			type: "post",
			url: "/news/score.asp",
			data:"",
			success:function(msg){
				$("#ajaxscore").html(msg)
			}
		})
	})
	
	$("#ajaxvenues").ready(function(){
		$.ajax({
			type: "post",
			url: "/news/venues.asp",
			data:"",
			success:function(msg){
				$("#ajaxvenues").html(msg)
			}
		})
	})

	$("#ajaxgameagainst").ready(function(){
		$.ajax({
			type: "post",
			url: "/news/gameagainst.asp",
			data:"",
			success:function(msg){
				$("#ajaxgameagainst").html(msg)
			}
		})
	})
})

function dayin(){
  var code = "<!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd\">"
  code += "<html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\"><head>"
  code += "<link type=\"text\/css\" rel=\"stylesheet\" href=\"\/style\/fontsize.css\" media=\"screen\" \/>"
  code += "<script type=\"text\/javascript\" src=\"\/js\/jquery-latest.pack.js\"></script>"
  code += "<\/head>"
  code += "<body>"
  code += "<div style='width:600px;margin:5px auto;border:1px solid #999;padding:20px;'>"
  code += "<a href=\"javascript:window.print();\"><img src=\"\/images\/viewprint.gif\" border=0 width=\"80\" height=\"20\" alt=\"打印此页面\"\/></a>"
  code += $(".endContent").html();
  //code=code.toUpperCase();
  //code=code.replace(/<div id=\"fontsize\" .*?<\/div>/ig,"");
  code=code.replace("<li>打印: </li><li><a onmouseup=\"javascript:dayin();\" href=\"javascript:void(0);\"><img src=\"\/images\/print_16x16.gif\"></a></li>","");
  //code=code.toLowerCase();
  code += "<br/><br/><a href=\"javascript:window.print();\"><img src=\"\/images\/viewprint.gif\" border=0 width=\"80\" height=\"20\" alt=\"打印此页面\"\/></a>"
  code += "</div></body></html>"
  var newwin=window.open('','','');
  newwin.opener = null;
  newwin.document.write(code);
  newwin.document.close();
} 
