SSOCUBE_mailAddressDomain = "ssocube.jp"
SSOCUBE_copyright = "Copyright &copy; 2006-2009 NetSpring, Inc. All Rights Reserved.";
SSOCUBE_googleSeachForm = "<form id=\"form1\" method=\"get\" action=\"http://www.google.co.jp/custom\"> \
        <input name=\"serchtext\" type=\"text\" id=\"serchtext\" size=\"31\" maxlength=\"255\" /> \
        <input type=\"hidden\" name=\"as_sitesearch\" value=\"www.axiole.jp\" /> \
        <input type=\"hidden\" name=\"ie\" value=\"EUC-JP\" /> \
        <input type=\"hidden\" name=\"oe\" value=\"EUC-JP\" /> \
        <input type=\"hidden\" name=\"cof\" value=\"AH:left;\" /> \
        <input type=\"hidden\" name=\"hl\" value=\"ja\" /> \
		\
        <input name=\"BtnA\" type=\"submit\" id=\"SearchBtn\" value=\"検　索\" /> \
      </form>";
SSOCUBE_footerNavi = "<span>|</span><a href=\"http://www.netspring.co.jp/infor01.html\" target=\"_blank\">会社概要</a> \
	<span>|</span><a href=\"http://www.netspring.co.jp/privacy.html\" target=\"_blank\">プライバシーポリシー</a> \
	<span>|</span>";

// 「パス」の描画
function drawPath(array) {
	for (var i = 0; i < array.length; i ++) {
		path_parts = array[i].split(":");
		if (path_parts[1] != "") {
			document.write("&gt; <a href=\"" + path_parts[1] + "\">" + path_parts[0] + "</a>" );
		} else {
			document.write("&gt; " + path_parts[0] );
		}
	}
}

function drawAddressLink(name, domain) {
	if ((domain == null) || (domain == "")) {
		domain = SSOCUBE_mailAddressDomain;
	}
	document.write("<a href=\"mailto:");
	document.write(name);
	document.write("@");
	document.write(domain);
	document.write("\">");
	document.write(name);
	document.write("@");
	document.write(domain);
	document.write("</a>");
}

function writeCopyright() {
	document.write(SSOCUBE_copyright);
}

function writeGoogleSeachForm() {
	document.write(SSOCUBE_googleSeachForm);
}

function writeFooterNavi() {
	document.write(SSOCUBE_footerNavi);
}

