
	var tieup_no;
	var tieup_body;

function tieup_disc_list(x){
	/////////////////////////////////////////////////////
	now_play = "<img src='http://www.cdjournal.com/image/parts/nowload.gif'> 読み込んでいます…";
	/////////////////////////////////////////////////////

	tieup_no = "tno" + x;
	tieup_body = "tie" +x;

	document.getElementById(tieup_no).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_tieup_change;
	///////////////////////////////////////////////	
	// HTTP非同期通信でPHPにアクセス  page
	httpObject.open ("GET", "script_first/tieup.php?no=" + x + "&" + (new Date).getTime(), true);
	httpObject.send (null);
}

///////////////////////////////////////////////	
// 表示
	function display_tieup_change(){
		if(httpObject.readyState == 4 && httpObject.status == 200){
			top_body_txt = decodeURIComponent(httpObject.responseText);
			
			document.getElementById(tieup_body).style.height = "auto";			
			document.getElementById(tieup_no).style.fontSize = "12px";	
			document.getElementById(tieup_no).innerHTML = top_body_txt;
		}
	}
	///////////////////////////////////////////////	
	///////////////////////////////////////////////	

