/* 
 * Theme Common Javascript Functions
 */

/*Jump window*/
function Show($id)
{
 var ele=window.document.getElementById($id);
 var block=window.document.getElementById("block");
 ele.style.display="block";
 block.style.display="block";
}
/*Close window*/
function Reset($id)
{
     window.document.getElementById($id).style.display="none";
     window.document.getElementById("block").style.display="none";

}
//var Browser_Agent=navigator.userAgent;
//    if(Browser_Agent.indexOf("MSIE")!=-1){
//        var a=navigator.browserLanguage;
//        if(a !="zh-cn"){
//            window.location.href='http://en.wheatv.com';
//        }
//    }
//    else{
//        var b=navigator.language;
//        if(b!="zh-CN"){
//            window.location.href='http://en.wheatv.com';
//        }
// }


