//--------------------------------------------------------------------------------------------------------- Your Custom JS Functions Here -------
/* check domain if need to add www. */
/* if your domain is like www.inchol.com.cn, then should do it.
   user may link to inchol.com.cn, in this case, ajax loading area will not display.
   need to change location to www.inchol.com.cn
   change 'inchol.com.cn' to your domain, with out www*/
//function CheckWWWForDomain()
//{
//    var loc = window.location.href;
//    var param = /^inchol\.com\.cn/;
//    if(param.test(window.location.host))
//    {
//        window.location = loc.replace(window.location.host.toLowerCase(), 'www.' + window.location.host.toLowerCase());
//    }
//}
//CheckWWWForDomain();












