//スワップイメージプラスステータスやね  function chimg(filename,target,msg){  status = msg;	document.images[target].src = filename;}//スワップイメージやね  function iiiii(filename,target){	document.images[target].src = filename;}//ステータスに文字を流すやつね  function setStatus(msg) {     status = msg}//海外用　サンプル聞かないとオーダー出来ないやつfunction hearGet(FrNm1,Url1,FrNm2,Url2){	window.open(Url1,FrNm1);	window.open(Url2,FrNm2);}//プルダウンメニューでジャンプするやつ（e_tree／tree用）  function jump(sel) {  if (sel.options[sel.selectedIndex].value) {    top.location.href = sel.options[sel.selectedIndex].value;  }}//プルダウンメニューでジャンプするやつ（e_tree／tree用）  function jumpFaq(sel) {  if (sel.options[sel.selectedIndex].value) {    location.href = sel.options[sel.selectedIndex].value;  }}//マウスの位置取得function getMouseXonScreen(e){  if(document.all)   return window.event.screenX  else if(document.layers || document.getElementById )return e.screenX}function getMouseYonScreen(e){  if(document.all)   return window.event.screenY  else if(document.layers || document.getElementById )return e.screenY}  //サブウインドウ開く  function openDDD(){    window.open('allsongs.html','SOUNDDATA','left=200,top=200,width=420,height=550,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes')  }  //ポップアップウインドウの位置を決めて開くfunction setXYandOpen(url,e){    var x=getMouseXonScreen(e)+50    var y=getMouseYonScreen(e)-340    openHELP(url,x,y);}function openHELP(url,x,y){  helpwin=window.open(url,'helpwin','left='+x+',top='+y+',width=250,height=310,scrollbars=no');  helpwin.focus();} timerID = 0; sec = 4 * 1000; //チップヘルプを表示する時間。3秒。 function sDomChipHelp(divID,x,y) //チップヘルプを表示する関数 { 	var offX = offY = 0; //初期値	if (document.layers) chipOBJ = document.layers[divID]; //NN4対応	if (document.all) chipOBJ = document.all[divID].style; //IE4対応	if (document.getElementById) //DOM対応	{		chipOBJ = document.getElementById(divID).style;		if (document.all) //IE5以降のスクロール値取得		{ 			offX = document.body.scrollLeft;			offY = document.body.scrollTop;		}	}	chipOBJ.visibility = "visible"; //チップヘルプ表示	chipOBJ.left = x + offX + 10; //ポップアップ位置	chipOBJ.top = y + offY + 12; //y方向にカーソル分(16px)だけずらす (^^)	timerID = setTimeout("hChipHelp('"+divID+"')",sec); //一定時間表示したら消す  }  function hChipHelp(divID) //チップヘルプを非表示にする関数 {	if (document.layers) chipOBJ = document.layers[divID];	if (document.all) chipOBJ = document.all[divID].style;	if (document.getElementById) chipOBJ = document.getElementById(divID).style;	chipOBJ.visibility = "hidden"; //チップヘルプ非表示	clearTimeout(timerID); //タイマーを解除 }