function getCurrentURLAndConvertToEnglish() {
	var dURL = window.location.href;
	//"http://www.mgrc.com.my/cn/showPressRelease.shtml?press release/news_synamatix_12052009.shtml";//	
	
	var _loc = dURL.indexOf("大马基因.com/");
	if( _loc == -1 ) {
	  var theURL = dURL.substring(_loc+33); //29
	  window.location.href = "http://www.mgrc.com.my/" + theURL;
	} 
	else if( _loc != -1 ) {
		  var theURL = dURL.substring(_loc+9);
		  window.location.href = "http://www.mgrc.com.my/" + theURL;
	}
	else
	window.location.href = "http://www.mgrc.com.my/cccc" + theURL;
	
	
	
	
	//alert(theURL);//alert(dURL);
	if(dURL.indexOf('showPressRelease')!=-1 && _loc == -1){
		_loc = dURL.indexOf("大马基因.com/showPressRelease.shtml?");
		theURL = dURL.substring(_loc+70);		
		window.location.href = "http://www.mgrc.com.my/press%20release/" + theURL;
	}
	else if(dURL.indexOf('showPressRelease')!=-1 && _loc != -1){
		_loc = dURL.indexOf("大马基因.com/showPressRelease.shtml?");
		theURL = dURL.substring(_loc+46);		
		window.location.href = "http://www.mgrc.com.my/press%20release/" + theURL;	
	}
	else if(dURL.indexOf('showGenomicsNews')!=-1 && _loc == -1){
		_loc = dURL.indexOf("大马基因.com/showGenomicsNews.shtml?");
		theURL = dURL.substring(_loc+56);
		window.location.href = "http://www.mgrc.com.my/" + theURL;
	}
	else if(dURL.indexOf('showGenomicsNews')!=-1 && _loc != -1){
		_loc = dURL.indexOf("大马基因.com/showGenomicsNews.shtml?");
		theURL = dURL.substring(_loc+32);		
		window.location.href = "http://www.mgrc.com.my/" + theURL;	
	}
	
		
	return window.location.href;
}
