// JavaScript Document

// ***************************************
// フレーム高さ自動取得
// ***************************************
function GetHeight(ID,NAME) {
	//ウインドウの先頭に戻す
	window.scrollTo(0,0);
	//アイフレーム高さ調節
	if (document.height){
		document.getElementById(ID).style.height = parent.frames[NAME].document.height +40 +"px" ;
	}else{
		document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight +40 +"px";
	}
}
// ***************************************
// フレーム高さ自動取得
// 製品紹介　IEセレクトリストの幅調整バグ回避用
// ***************************************
function GetHeightIrregular(ID,NAME) {
	//ウインドウの先頭に戻す
	window.scrollTo(-100,0);
	//アイフレーム高さ調節
	if (document.height){
		//document.getElementById(ID).style.height = parent.frames[NAME].document.height + 100 +"px" ;
		document.getElementById(ID).style.height = parent.frames[NAME].document.height +40 +"px" ;
	}else{
		//document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight + 100 +"px";
		document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight + 40 +"px";
	}
}

// ***************************************
// メーラー起動
// ***************************************
function sendmail() {

	//メールアドレス設定
	acount = "info";
	domain = "hataya.co.jp"; 
	
	//メールアドレス生成
	this.location.href = "mailto:" + acount + "@" + domain;
}
