/*--------------------------------------------------||--------------------------------------------------*///-----------------firstcolor="black";nextcolor="#003D79";function table_row(table_id){tobj=document.getElementById(table_id).tBodies[0];  for (i=1; i<tobj.rows.length;i++){tobj.rows[i].onmouseover=function(){this.style.backgroundColor=nextcolor};tobj.rows[i].onmouseout=function(){this.style.backgroundColor=firstcolor};  }}var req=nullfunction setHTTP(){	if (window.XMLHttpRequest){		// ブラウザ内蔵型の場合		req = new XMLHttpRequest();	}else if (window.ActiveXObject){	try{		req = new ActiveXObject("MXSML2.XMLHTTP");	}catch (e){		try{			req = new ActiveXObject("Microsoft.XMLHTTP");		}catch (e) {}		}	}	if (req == null){		alert("サービスを続行出来ませんでした\n(オブジェクトが取得できません)");	}}function setHTMLSource(url, divid){	setHTTP();	if (req != null && document.getElementById(divid)){		document.getElementById(divid).innerHTML = '<img src="/mt4/js/load.gif" border="0">';		req.open("GET", url, true);		req.onreadystatechange = function() {			if (req.readyState == 4 && req.status == 200) {				document.getElementById(divid).innerHTML = req.responseText;			}		}		req.send(null)	}}
