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 popfile(type,id) {
	if(type && id) {
		var w = 100;
		var h = 100;
		var t = (screen.height-h)/2;
		var l = (screen.width-w)/2;
		var	option = "location=no,status=yes,resizable=yes,";
		option += "scrollbars=yes,width="+w+",height="+h+",";
		option += "top="+t+",left="+l;
		//nw = window.open('apercu.php?type='+type+'&id='+id,'pw',option);
		window.location.href = 'apercu.php?type='+type+'&id='+id;
	}
}

function affiche(id,type) {
	if(!isNaN(id) && type) {
		window.location.href = 'index.php?page=affiche&type='+type+'&id='+id;
	}
}

function mentions() {
	popwin("mentions.php","men",300,400,"scrollbars=no,status=no,resizable=no","center")
}

function printMe() {
	w		= 700;
	h 		= 580;
	t 	= (screen.height - h)/2;
	l 	= (screen.width - w)/2;
	print_win = window.open('print.php','printed','width='+w+', height='+h+', top='+t+', left='+l+', menubar=no, scrollbars=yes, status=yes, resizable=no');
	print_win.focus();
}

function printprocess() {
	document.getElementById('contentTOprint').innerHTML = '<table border="0">'+opener.document.getElementById('contenu').innerHTML+'</table>';
	document.getElementById('url').innerHTML += '<hr><a class="ariane" href="'+opener.window.location.href+'" target="_blank">'+opener.window.location.href+'</a>';
	document.title = opener.document.title;
	window.print();
}

function sendMe()
{
	w		= 380;
	h 		= 290;
	t 	= (screen.height - h)/2;
	l 	= (screen.width - w)/2;
	window.open('sendP.php','friendwin','width='+w+',height='+h+',top='+t+',left='+l+',status=yes,scrollbars=no,location=no,menubar=no,resizable=no');
}

function deplie(id){
	eval('etat = document.getElementById("bloc'+id+'").style.display == "block" ? "none" : "block" ;');
	eval('document.getElementById("bloc'+id+'").style.display = "'+etat+'";');	
}
function deplie_st(id,st){
	//eval('etat = document.getElementById("bloc'+id+'").style.display == "block" ? "none" : "block" ;');
	eval('document.getElementById("bloc'+id+'").style.display = "'+(st?"block":"none")+'";');	
}

function photopop(id) {
	if(id) {
		popwin('pop.php?id='+id,'pop'+id,600,600,'status=yes','center');
	}
}

function deplieByName(parent,tag,name) {
	var parent = document.getElementById(parent);
	eval('var els = parent.getElementsByTagName("'+tag+'");');
	if(els) {
		for(var i=0;i<els.length;i++) {
			if(els[i].getAttribute("name") == name) {
				els[i].style.display = "block";
			}else{
				els[i].style.display = "none";
			}
		}
	}
}

//Ajouté par Michel Goujon
function popup(contenu) {
	popwin("popup.php?contenu="+contenu,"men",400,400,"scrollbars=no,status=no,resizable=no","center");
}
