// JavaScript Document
var ThisURL
ThisURL = document.location;

function OpenURLVN(){	
	MM_goToURL('parent','/page.asp?lang=vn&lp=' + ThisURL);
	return document.MM_returnValue;
}
function OpenURLEN(){	
	MM_goToURL('parent','/page.asp?lang=en&lp=' + ThisURL);	
	return document.MM_returnValue;
}

function MM_goToURL() {
  var i, args=MM_goToURL.arguments;
  document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}