function add_disc_sql(x,y){
	/////////////////////////////////////////////////////
	now_play = "<img src='http://www.cdjournal.com/image/parts/nowload.gif'> 読み込んでいます…";

	document.getElementById("add_disc_body").innerHTML = now_play;
	////////////////////////////////////////////////////
	/////////////////////////////////////////////////////
	// Mozilla, Firefox, Safari, IE7
	if (window.XMLHttpRequest){
		httpObject = new XMLHttpRequest();
	// IE5, IE6
	} else if (window.ActiveXObject){
		try {
			httpObject = new ActiveXObject("Msxml2.XMLHTTP"); 
		} catch(e) {
			httpObject = new ActiveXObject("Microsoft.XMLHTTP"); 
		}
	}
	///////////////////////////////////////////////	
	// サーバーからデータ到着後に実行する関数
	httpObject.onreadystatechange = display_add_disc;
	///////////////////////////////////////////////	
	// HTTP非同期通信でPHPにアクセス  
	httpObject.open ("GET", y + "news/script_contents/add_disc.php?no=" + x + "&" + (new Date).getTime(), true);
	httpObject.send (null);

}
/////////////////////////////////////////////////////
///////////////////////////////////////////////	
// data_change 表示
	function display_add_disc(){
		if(httpObject.readyState == 4 && httpObject.status == 200){
			body_txt = decodeURIComponent(httpObject.responseText);
			
			document.getElementById("add_disc_body").innerHTML = body_txt;
		}
	}
	
