function popup(pictureURL) {
    var newwindow = window.open("","myWin","width=200, height=300, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
    with (newwindow)
    {
        var contents="<HTML><HEAD><TITLE>PictureGallery</TITLE></HEAD><BODY BGCOLOR='#FFFFFF' TEXT='#99CC00' LEFTMARGIN=0 TOPMARGIN=0> \
        <IMG SRC='" + pictureURL + "'onLoad='javascript:window.resizeTo(this.width+10,this.height+30);'> \
        </BODY></HTML>";
        document.open("text/html");
        document.write(contents);
        document.close();
    }
    newwindow.focus();
}

function pop(pictureURL) {
    var newwindow = window.open(pictureURL,"myWin","width=800, height=600, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function popOnly(pictureURL) {
    var newwindow = window.open(pictureURL,"myWin","width=650, height=480, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function popVert(pictureURL) {
    var newwindow = window.open(pictureURL,"myWin","width=600, height=700, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function popVertOnly(pictureURL) {
    var newwindow = window.open(pictureURL,"myWin","width=480, height=650, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function popVideo(pictureURL) {
    var newwindow = window.open(pictureURL,"myWin","width=500, height=360, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function verifMail() {
	
	if(document.forms["newsletter"].email.value == "") {
		alert("Merci de saisir votre email.");
	}
	else {
		if(document.forms["newsletter"].antispam.value == "") {
			alert("Merci de saisir le code affiché dans l'image afin de bloquer les spams.");
		}
		else {
			document.forms["newsletter"].submit();
		}
	}
}

function verifMess() {
	
	if(document.forms["cont"].emailMess.value == "") {
		alert("Merci de saisir votre email pour vous repondre.");
	}
	else {
		if(document.forms["cont"].antispam.value == "") {
			alert("Merci de saisir le code affiché dans l'image afin de bloquer les spams.");
		}
		else {
			document.forms["cont"].submit();
		}
	}
}

function verifSoiree(f) {
	
	if(f.desc.value == '' || f.libelle.value == '' || f.jour.selectedIndex == 0 || f.mois.selectedIndex == 0 || f.annee.selectedIndex == 0) {
			alert("Merci de saisir tous les champs obligatoires svp"); }
	else f.submit();
	
}
function addSaut() {
	document.forms["planning"].desc.value=document.forms["planning"].desc.value+'<br />'
}



