<!--//

// ロケーション先設定関数群
// 使用の際は必ずenv.jsをインクルードする。

//http://から始まるURLを取得する。
function GetFullUrl(url){
    if (domain_name == '') {domain_name = document.domain;}
    return 'http://' +  domain_name + siteName + url;
}

//https://から始まるURLを取得する。
function GetsFullUrl(url){
    if (domain_name == '') {domain_name = document.domain;}
    return schema +  domain_name + siteName + url;
}

// ロケーション先設定（http）
function lct(url){
	location.href= GetFullUrl(url);
}

// ロケーション先設定ポップアップ（http）
function lctPopUp(url){
	window.open( GetFullUrl(url) );
}

// ロケーション先設定（https）
function slct(url){
	location.href= GetsFullUrl(url);
}

// ロケーション先設定ポップアップ（https）
function slctPopUp(url){
	window.open( GetsFullUrl(url));
}
-->
