function verifNumero(elem) {
	if (elem == null) {
		return false;
	}
	if (elem.value == null) {
		return false;
	}
	// vartest=elem.value.replace(",",".") ;
	vartest = elem.value;
	if (isNaN(vartest) || vartest.length != 10
			|| vartest.substring(0, 2) != "06") {
		elem.style.background = "#F00082";
		elem.style.color = "white";
		elem.style.fontWeight = "normal";
		elem.style.textDecoration = "blink";
		elem.focus();
		return false;
	}
	elem.style.background = "white";
	elem.style.color = "#666666";
	elem.style.fontWeight = "normal";
	elem.style.textDecoration = "none";
	elem.value = vartest;
	return true;
}
function soumettre() {
	if (!verifNumero(document.forms.saisieMobile.msisdn)) {
		alert("ce numero est incorrect\nVeuillez le corriger");
		return false;
	}
	var load = window
			.open(
					"http://www.webtogallery.fr/templates/message.jsp?option=&service="
							+ document.forms.saisieMobile.service.value
							+ "&msisdn="
							+ document.forms.saisieMobile.msisdn.value,
					'',
					'scrollbars=no,menubar=no,width=400,height=250,resizable=yes,toolbar=no,location=no,status=no');
	return true;
}
function loadPopUp() {
	var load = window
			.open(
					'http://www.webtogallery.fr/services/633/3124/popup.htm',
					'',
					'scrollbars=no,menubar=no,width=400,height=250,resizable=yes,toolbar=no,location=no,status=no');
}

