
function popup(id){
	var opts = 'scrollbars=yes,resizable=no,menubar=yes,status=no';
	var w = 700;
	var h = 600;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open('pop_up.php?id='+id,'ppw','width='+w+',height='+h+',top=50,left='+l+','+opts);
}


function popup_message(id){
	var url = 'msg-' + id + '.html';
	var opts = 'scrollbars=no,resizable=no,status=no,menubar=no,location=no';
	var w = 525	;
	var h = 530;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open(url,'msg_'+id,'width='+w+',height='+h+',left='+l+','+opts);
	pw.focus();
}

function cocher_tout() {

	var divs=document.formulaire.getElementsByTagName("input");
	for( var i=0 ; i<divs.length ; i++ ) {
		if( divs[i].id.search(/^individu/) >= 0 ) {
			divs[i].checked= divs[i].checked == true ? false: true;
		}
	}
}

function cocher_tout_message() {

	var divs=document.formulaire_message.getElementsByTagName("input");
	for(var i=0 ; i<divs.length ; i++)
	{
			if(divs[i].id.search(/^individu/)>=0)
			{
				
				divs[i].checked= divs[i].checked== true ? false: true;
				
			
			}
	}
}

function cocher_tout_favoris() {

	var divs=document.formulaire_favoris.getElementsByTagName("input");
	for(var i=0 ; i<divs.length ; i++)
	{
			if(divs[i].id.search(/^individu/)>=0)
			{
				
				divs[i].checked= divs[i].checked== true ? false: true;
				
			
			}
	}
}

function cocher_tout_visites() {

	var divs=document.formulaire_visites.getElementsByTagName("input");
	for(var i=0 ; i<divs.length ; i++)
	{
			if(divs[i].id.search(/^individu/)>=0)
			{
				
				divs[i].checked= divs[i].checked== true ? false: true;
				
			
			}
	}
}

function popup_moderateur(id_compte, id_personne){
	var url='moderateur-'+id_compte+'-'+id_personne+'.html';
	var opts = 'scrollbars=no,resizable=no,status=no,menubar=no,location=no';
	var w = 525	;
	var h = 320;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open(url,'','width='+w+',height='+h+',left='+l+','+opts);
	pw.focus();
}

function popup_texte(url){
	var opts = 'scrollbars=yes,resizable=no,status=no,menubar=no,location=no';
	var w = 500;
	var h = 400;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open('/'+url,'','width='+w+',height='+h+',left='+l+','+opts);
}

function popup_diapo(url){
	var opts = 'scrollbars=yes,resizable=yes,status=no,menubar=no,location=no';
	var w = 450;
	var h = 250;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open(url,'','width='+w+',height='+h+',left='+l+','+opts);
}