function startWeb(lng){
   window.open("../" + lng + "/main." + lng + ".htm","","fullscreen","scrollbar=no");
}

function closeWeb(){
  window.close();
}

function checkMail(x){
	var strApp = x;
	var ind = x;
	var posStr = strApp.indexOf("@");

	if (posStr>-1){
		strApp = strApp.substring(posStr,strApp.length);
		if (strApp.length>1){
			posStr = strApp.indexOf(".");
			if (posStr>-1) {
				strApp = strApp.substring(posStr,strApp.length);
				if (strApp.length>1){
					return true;
				}
			}
		}
	}
	return false;
}

function checkCampo(x){
	if ((x != "") && (x != " ") && (x != "  ")) return true;
	return false;
}


