<!--
    //画像切り替え
	function henkan(img){document.comment.src=img;}
	
	//HTMLエデッタ用
	function _up_open(url){
		if (url != ''){
			window.open(url,'win',"width=500,height=330,scrollbars=no,location=no,menubar=no");
		}
	}
	//　クッキーに名前を保存
	function saveForm()
	{
		var saveDate = escape(document.chatformcome.name.value+";");
		document.cookie = saveDate;
	}

	//　クッキーから名前を読み込む
	function loadForm()
	{
		loadData = unescape(document.cookie);
		loadName = loadData.substring(0,loadData.indexOf(";"));
		document.chatformcome.name.value = loadName;
	}
	
	//フィルター処理
	function filter(go){
		if(go.filters.alpha.opacity<100){
			go.filters.alpha.opacity+=5
		}else{ 
			if(window.light){
				clearInterval(light)
			}
		}	
	}

	//onmouseover状態
	function fil_no(image){
		date=image
		light=setInterval("filter(date)",10)
	}

	//onmouseout状態
	function fil_go(image){
		clearInterval(light)
		image.filters.alpha.opacity=50
	}
	
	//テキスト変更
	function change(mode,page){
		if (document.all){ 
			window[mode].innerText = page;
		}
		if (document.layers){
			document[mode].document.open("text/html");
			document[mode].document.write(page);
			document[mode].document.close();
		}
	}

	
//-->


