﻿var SiteUrl = "ca-tour.onlyone-pro.com";
var DomainName = "onlyone-pro.com"
var SendCGI = "/common/cgi-bin/send.cgi";
var SendOpt = 'onSubmit="return sendMail(this);"';

// ----------------------
// コンタクトリンクの生成
function GenerateContactLink( tagTF , AccountName ) {
	var mAddress;

	// Generate MA
	mAddress = AccountName + '&#64;' + DomainName;

	// Generate Tags
	bTag = '<a href="' + 'mai' + 'lto:' + mAddress + '">';
	eTag = '</' + 'a>';

	if( tagTF ) {
		document.write( bTag + mAddress + eTag );
	}
	else {
		document.write( mAddress );
	}
}

// ------------------------
// 送信フォームの前後を生成
function GenerateInputFormTag( zName , zId , zClass ) {
	var fTag = '<form action="' + SendCGI + '" method="post" name="' + zName + '" id="' + zId + '" class="' + zClass + '" ' + SendOpt + '>';
	document.write( fTag );
}

