var submit_form1 = 0;
function submit_form(formulaire)
{
	if (submit_form1 == 1)
	{
		alert("Vous avez déjà clické une fois, merci de patienter...");
	}
	else
	{
		submit_form1 = 1;
		document.forms[formulaire].submit();
	}
	
}

function checkNum(e) { 
	
	var event = e ? e : window.event;
	var target = e ? event.target : event.srcElement;
	var key = event.keyCode;

    if ( (key<48 || key>57) && key!=13)  { return false; }
	return true;
}


function SelectAll(formulaire)
{
	len = document.forms[formulaire].elements.length;
	var i=0;
	for( i=0; i<len; i++)
	{
		if (document.forms[formulaire].elements[i].type=="checkbox")
		{
			document.forms[formulaire].elements[i].checked = !document.forms[formulaire].elements[i].checked;
		}
	}
}

function AgendaZoom(p)
{
	var option = 'width=50, height=50, scrollbars=yes, status=no, resizable=yes';
	window.open('/soirees-black/zoom_'+p+'.html?pu=1','Zoom',option);
}
function MsgHistorique(p)
{
	var option = 'width=500, height=400, scrollbars=yes, status=no, resizable=yes';
	window.open('/membres/msg-historique.html?p='+p,'Historique',option);
}

function insert_flash(name,url,width,height,param)
{
	document.write('<object name="'+name+'" id="'+name+'" type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'" />'+param+'</object>');
}
