DomainPath ="http://" + parent.location.hostname;


function ChangeChiVersion()
{

TagString=location.search
TagString=TagString.charAt(5)
this_doc_path=parent.location.pathname;

tempString1="eng";
tempString2="chi";

this_doc_path=this_doc_path.replace(tempString1 , tempString2);
//window.location=DomainPath +  this_doc_path + "#" + TagString;
window.location=DomainPath +  this_doc_path ;

}


function ChangeEngVersion()
{

TagString=location.search
TagString=TagString.charAt(5)
this_doc_path=parent.location.pathname;

tempString1="chi";
tempString2="eng";

this_doc_path=this_doc_path.replace(tempString1 , tempString2);
//window.location=DomainPath +  this_doc_path + "#" + TagString;
window.location=DomainPath +  this_doc_path ;

}



