var ksgmap__ua = new Object();		//UserAgent

init();
//□初期化
function init(){
	//ユーザーエージェントを設定
	var ua = navigator.userAgent;
	ksgmap__ua.MSIE					= ( ua.match( /MSIE/ )				? true : false );
	ksgmap__ua.Firefox				= ( ua.match( /Firefox/ )			? true : false );
	ksgmap__ua.Netscape				= ( ua.match( /Netscape/ )			? true : false );
	ksgmap__ua.Gecko				= ( ua.match( /Netscape|Firefox/ )	? true : false );
	ksgmap__ua.Safari				= ( ua.match( /Safari/ )			? true : false );
}
//□イベントをキャンセル
function eventCancel( event ){
	if( ksgmap__ua.MSIE ){			//IE
		event.returnValue = false;
	} else {						//Firefoxとか
		event.preventDefault();
	}
	return false;
}

//□アルファチャンネル付きPNGを出力
function writeAlphaChPng( filename , width , height , attribute , style ){
	if( style == undefined ){ style = ""; }

	if( ksgmap__ua.MSIE ){  //IE
		var result = "<div style=\"" + style + " width: " + width + "px;  height: " + height + "px;  filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + filename + "',sizingmethod=image);\" " + attribute + "></div>";
	} else {  //IE以外
		var result = "<img src=\"" + filename + "\" style=\"" + style + "\" width=\"" + width + "\" height=\"" + height + "\" alt=\"\" " + attribute + ">";
	}

	document.write( result );
}
//□メールアドレス表示
function writeMailaddress(){

	var mail1 = "info2008";
	var mail2 = "steponecoltd.jp";
	document.write( "( <a href=\"mailto:" + mail1 + "@" + mail2 + "\" class=\"navi-inlineLink02\">" + mail1 + "@" + mail2 + "</a> )" );
}
