﻿var CONTEXTPATH = "http://javascript.cn2che.com";
var SiteUrl = "";

/*---------------------------Server,Page-------------------------*/
var Server = {};
Server.ContextPath = CONTEXTPATH;

Server.loadScript = function (url) {
    document.write('<script type="text/javascript" src="' + url + '"><\/script>');
}
Server.loadCSS = function (url) {
    if (isGecko) {
        var e = document.createElement("LINK");
        e.rel = "stylesheet";
        e.type = "text/css";
        e.href = url;
        document.getElementsByTagName("HEAD")[0].appendChild(e);
    } else {
        document.createStyleSheet(url);
    }
}

/*START_LOADSCRIPT*/
Server.loadScript(Server.ContextPath + "/common/jquery.js");
Server.loadScript(Server.ContextPath + "/common/public.js");
Server.loadScript(Server.ContextPath + "/MarqueeClass.js");

Server.loadScript("/javascript/AccountManage.js");

