//This script toggle URL Language

function gup( name ) {
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var tmpURL = window.location.href;
  var results = regex.exec( tmpURL );
  if( results == null )
    return "0";
  else
    return results[1];
}

function ToggleLanguage (This) {
	var MenuID = gup('MenuID');
	
	if (This == 'CN') {
		window.location = "index.cfm?MenuID=" + MenuID + "&Lan=CN";
	} else if (This == 'EN') {
		window.location = "index.cfm?MenuID=" + MenuID + "&Lan=EN";
	}
	
}
