﻿// JavaScript Document
// 文字コードはHTMLソースのContent-Typeに合わせる（UTF-8）

// ***************************************
// フレーム高さ自動取得
// ***************************************
function GetHeight(ID,NAME) {

	//ウインドウの先頭に戻す
	window.scrollTo(0,0);

	//アイフレーム高さ調節
	if (window.opera) {
		//Opera
		document.getElementById(ID).style.height = "0px" ;
		document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight + 10 +"px";
	}else if (/WebKit/i.test(navigator.userAgent)){
		//Chrome,Safari
		document.getElementById(ID).style.height = "0px" ;
		document.getElementById(ID).style.height = document.getElementById(ID).contentDocument.height + 'px';	
	}else if (document.height){
		//IE
		document.getElementById(ID).style.height = parent.frames[NAME].document.height + 10 +"px" ;
	}else{
		//FireFox
		document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight + 10 +"px";
	}

}

// ***************************************
// メーラー起動
// ***************************************
function sendmail() {

	//メールアドレス設定
	var account = "info"; 
	var domain = "mail.co.jp"; 

	//生メールアドレス成
	this.location.href = "mailto:" + account + "@" + domain;
}


