
function SelectLanguage(SelLang)  {

  switch(SelLang) {
    case 'English':
      break;

    case 'Others':
      alert('Soon we will launch our website in several languages including Japanese, German, Spanish and Chinese.');
      break;
    
    default:
      break;      
  }
  return true;
}


function OpenURL (URL) {
  if ( URL.length > 0 )
    window.location = URL;
  else
    return false;
    
  return true;
}
