// ============================================================ 
// MAIL ADDRESS
// ============================================================ 
function f(){var s="BE97J?EDa>H;<pUC7?BJEm@II7sIJ`:7D9;a9ECU",r="";
for(i=0;i<s.length;i++)r+=String.fromCharCode((s.charCodeAt(i)+9)%93+33);eval(r);}

/* ====================================================================
 Name        : addEvent
 Description : WINDOW ONLOADのバッティング回避
==================================================================== */
function addEvent(elm,listener,fn) {
	try {
		elm.addEventListener(listener,fn,false);
	} catch(e) {
		elm.attachEvent("on"+listener,fn);
	}
}

/* ====================================================================
 Name        : close_win
 Description : サブウインドウを閉じる
==================================================================== */
function close_win() {
	var nvua = navigator.userAgent;
	 if(nvua.indexOf('MSIE') >= 0) {
		if(nvua.indexOf('MSIE 5.0') == -1) {
			top.opener = '';
		}
	 }
	 else if(nvua.indexOf('Gecko') >= 0) {
		top.name = 'CLOSE_WINDOW';
		wid = window.open('','CLOSE_WINDOW');
	 }
	 top.close();
}


/* ====================================================================
 Name        : embedYoutube
 Description : YOUTUBE埋め込み
==================================================================== */
/*
function embedYoutube(url, obj) {
	document.write(
	"<object width='"+obj.w+"' height='"+obj.h+"'>"+
	"<param name='movie' value='"+url+"'></param>"+
	"<param name='allowFullScreen' value='true'></param>"+
	"<param name='allowscriptaccess' value='always'></param>"+
	"<embed src='"+url+"' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='"+obj.w+"' height='"+obj.h+"'></embed>"+
	"</object>"
	);
}

function embedYoutube2(url, w, h) {
	document.write(
	"<object width='"+w+"' height='"+h+"'>"+
	"<param name='movie' value='"+url+"'></param>"+
	"<param name='allowFullScreen' value='true'></param>"+
	"<param name='allowscriptaccess' value='always'></param>"+
	"<embed src='"+url+"' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='"+w+"' height='"+h+"'></embed>"+
	"</object>"
	);
}
*/

