function convertMoji2_shtml(t){
	var s="",moji="";
	for(var i=0;i<t.length;i++){
		moji=t.charCodeAt(i);
		s +=String.fromCharCode(moji+1);
	}
	return s;
}

var em_shtml=convertMoji2_shtml(String.fromCharCode(114,44,104,115,96,109,110,63,96,115,102)+String.fromCharCode(44,107,110,102,104,45,98,110,45,105,111));

document.write('<address class="contact">');
document.write('<span>営業部</span> 担当：板野');
document.write('<span>メール</span> ');
document.write('<a href="mai'+'lto:'+em_shtml+'">'+em_shtml+'</a>');
document.write('<span>お電話</span> 03-3436-5360');
document.write('</address>');
