﻿// JScript 文件
function SelectMenu(objID)
{
    if(objID != "tdFaith") 
    {
        document.all.tdFaith.className = "leftmenu";
        document.all.trFaith.style.display = "none";
        document.all.trJoin.style.display = "block";
        document.all.tdLeft.style.height = "715px"; 
    }
    if(objID != "tdJoin") 
    {
        document.all.tdJoin.className = "leftmenu";
        document.all.trFaith.style.display = "block";
        document.all.trJoin.style.display = "none";
        document.all.tdLeft.style.height = "330px"; 
    }
    document.getElementById(objID).className = "selectmenu";
}
//获取参数
function GetParameter(strSource, strName)
{
    var objReg = new RegExp("(^|\\?|&)"+ strName +"=([^&]*)(\\s|&|$)", "i");  
    if (objReg.test(strSource)) return RegExp.$2; return "";
}
function OnLoad()
{
    var objParam = GetParameter(window.location.href, "type");
    if(objParam != null && objParam.length > 0)
    {
        SelectMenu(((objParam == "1")?"tdFaith":"tdJoin"));
    }
}

function SendMail(strSubject) 
{
	document.location = "mailto:welcome@l-try.com?subject=" + strSubject;
}
