function popwin(url,name,w,h,optionlist,align)
{
	if(align == "center")
	{
		t = ((screen.height-h)/2);
		l = ((screen.width-w)/2);
		optionlist += (optionlist != "" ? "," : "")+"top="+t+",left="+l;
	}
	optionlist = optionlist != "" ? ","+optionlist : "";
	eval(name+" = window.open('"+url+"','"+name+"','width="+w+",height="+h+optionlist+"');");
	eval(name+".focus();");
}
function pop_realisation(id)
{
	if(id) {
		popwin('pages/pop_real.php?id='+id,'pop',600,500,'scrollbars=yes,location=no,menubar=no,resizable=yes','center');
	}
}
function deco()
{
	window.close();
}
function printMe()
{
	popwin('print.html','printwin',790,590,'scrollbars=yes,location=no,menubar=yes,resizable=yes','center');
	//pageP = window.open('print.html','print','width=800, height=600, scrollbars=yes,location=no, menubar=yes, resizable=yes');
}
function printOrg()
{
	popwin('org.pdf','printwin',790,590,'scrollbars=yes,location=no,menubar=yes,resizable=yes','center');
	//pageP = window.open('print.html','print','width=800, height=600, scrollbars=yes,location=no, menubar=yes, resizable=yes');
}
function sendMe()
{
	popwin('sendP.php','friendwin',400,300,'scrollbars=no,location=no,menubar=no,resizable=no','center');
	//pageS = window.open('mail_ami.php','ami','width=400, height=300, scrollbars=no,location=no, menubar=no, resizable=no');	
}

function checkContact(f)
{
	if(f.nom.value.length == 0)
	{
		alert('Veuillez saisir vos nom et prénom.');
		return false;
	}
	if(f.prenom.value.length == 0)
	{
		alert('Veuillez saisir vos nom et prénom.');
		return false;
	}
	if(f.message.value.length == 0)
	{
		alert('Veuillez saisir un message pour compléter votre courrier.');
		return false;
	}	
}

function setform(tr1,tr2)
{
	document.getElementById('form_'+tr1).style.cssText = "display: normal";
	document.getElementById('form_'+tr2).style.cssText = "display: none";
}

function TousLesChampsTexteRemplis(f)
{
	var j=0;
	var tr_id = f.inscription[0].checked ? 'form_inscription' : 'form_desinscription';
	var reg_nom = /^email/;
	var reg_mail = /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/;
	for(var i=0;i<f.length;i++)
	{
		var trId = f.elements[i].parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.id;
		var emailPasOk = reg_nom.test(f.elements[i].name) && !reg_mail.test(f.elements[i].value);
		if(trId == tr_id && ((f.elements[i].type == 'text' && f.elements[i].value.length == 0) || emailPasOk))
		{
			j++;
		}
	}
	if(j!=0)
	{
		alert("Il y a "+j+" champ(s) mal rempli(s).\nVérifiez votre saisie.");
		return false;
	}
}

function affiche(lien,type,id)
{
	if(id != 0)
	{
		window.location.href=lien+"&affiche="+type+"&id="+id;
	}
}

function setMargin()
{
	if(screen.width > 1200)
	{
		table = document.getElementById("main");
		table.style.setAttribute("margin-left","auto","false");
		table.style.cssText = "margin-left : auto";
	}
}

function popup(id,L,H)
{
		t 		= (screen.height - H)/2;
		l 		= (screen.width - L)/2;
		addwin = window.open('popup.php?id='+id,'popup','width='+L+', height='+H+', top='+t+', left='+l+', menubar=no, scrollbars=no, resizable=yes');
		addwin.focus();
}

function deplie(id)
{
	eval('etat = document.getElementById("bloc'+id+'").style.display == "block" ? "none" : "block" ;');
	eval('document.getElementById("bloc'+id+'").style.display = "'+etat+'";');
	//etat1 = document.getElementById("image"+id).src == 'http://www.kic-nimes.fr/ma/images/pictos/sym_s_plus.gif' ? 'images/pictos/sym_s_minus.gif' : 'images/pictos/sym_s_plus.gif' ;
	//document.getElementById("image"+id).src = etat1;
}

function deplie2(id)
{
	eval('etat = document.getElementById("bloc'+id+'").style.display == "block" ? "none" : "block" ;');
	eval('document.getElementById("bloc'+id+'").style.display = "'+etat+'";');
	document.getElementById("titre_lien_"+id+"").style.color = (document.getElementById("bloc"+id+"").style.display=='block' ? '#336699' : '');	
	//document.getElementById("titre_lien_"+id+"").style.textDecoration = (document.getElementById("bloc"+id+"").style.display=='block' ? 'underline' : '');	
	//etat1 = document.getElementById("image"+id).src == 'http://www.kic-nimes.fr/ma/images/pictos/sym_s_plus.gif' ? 'images/pictos/sym_s_minus.gif' : 'images/pictos/sym_s_plus.gif' ;
	//document.getElementById("image"+id).src = etat1;
}

function checkBrowser(){
	this.ver=navigator.appVersion;
	this.name=navigator.appName;
	this.mac=(navigator.platform.toLowerCase().indexOf('mac')>-1)?true:false;
	this.opera=(navigator.userAgent.toLowerCase().indexOf('opera')>-1)?true:false;
	this.dom=document.getElementById?true:false;
	this.ns=(this.name=='Netscape');
	this.ie4=(document.all && !this.dom)?true:false;
	this.ie=(this.name =='Microsoft Internet Explorer'&&!this.opera)?true:false;
	this.ie5=(this.ie && (navigator.userAgent.indexOf("MSIE 5")!=-1))?true:false;
	this.macie=(this.mac&&this.ie&&(navigator.userAgent.indexOf("MSIE")!=-1))?true:false
	this.macie50=(this.mac&&this.ie5&&(navigator.userAgent.indexOf("MSIE 5.0")!=-1))?true:false
	this.macie51=(this.mac&&this.ie5&&(navigator.userAgent.indexOf("MSIE 5.1")!=-1))?true:false
	this.macie523=(this.mac&&this.ie5&&(navigator.userAgent.indexOf("MSIE 5.23")!=-1))?true:false
	this.ns4=(this.ns && parseInt(this.ver) == 4)?true:false;
	this.ns6=((this.name=="Netscape")&&(parseInt(this.ver)==5))?true:false
	this.standards=document.getElementById?true:false;
	this.dhtml=this.standards||this.ie4||this.ns4;
	this.macsafari=(this.mac&&this.ns&&(navigator.userAgent.indexOf("Safari")!=-1))?true:false
	//alert(this.ver+' -\- '+this.name+' -\- '+this.macsafari);
}

function popup_video()
{
	window.open('popup_video.php', '', 'width=340, height=260, scrollbars=no, location=no, menubar=no, resizable=no');
}

function popup_video1()
{
	window.open('popup_video1.php', '', 'width=625, height=385, scrollbars=no, location=no, menubar=no, resizable=no');
}
