/* 
 * common.js
 *
 * Date: 
 *
 * 
 * Copyright(C) VALENTINE INC.
 * /////////////////////////////////////////////////////////////////////// */


/* ---------------------------------------------------------------------- */
/*                                                                        */
/* mailto 生成                                      　                    */
/* convert mailto                                      　                 */
/*                                                                        */
/* ---------------------------------------------------------------------- */

function convertMail(local){

	var l = new Array();
	l["s"] = String.fromCharCode(115,116,97,102,102); //local[ｓｔａｆｆ]
	var a = String.fromCharCode(64);
	var d = String.fromCharCode(118,97,108,101,110,116,105,110,101,46,99,111,46,106,112); //domain
	var m = String.fromCharCode(109,97,105,108,116,111,58);

	//メールアドレスにリンクをはる
	//document.write("<a href=\""+m+l[local]+a+d+"\">"+l[local]+"＠"+d+"</a>");
	
	//文字列にリンクをはる
	document.write("<a href=\""+m+l[local]+a+d+"\">お問い合わせ</a>");
}

/* ---------------------------------------------------------------------- */


