function print(url)
{
	Pw = 820;
	Ph = 700;
	Pl = eval( (screen.width / 2) - (Pw / 2) );
	Pt = eval( (screen.height / 2) - (Ph / 2) );
	options = "directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width="+Pw+",height="+Ph+"top="+Pt+", left="+Pl;
	window.open(url, "Promenades92_Impression", options);
}

function envoiami() {
	portlet_id = "envoiami";
	var reg=new RegExp("&", "g");
	link = document.location.href;
	link = link.replace(reg,"*");
	url = "/envoi-a-un-ami?p_p_id="+portlet_id+"&p_p_mode=view&p_p_lifecycle=1&p_p_state=normal&_"+portlet_id+"_link="+link;
	Pw = 780;
	Ph = 700;
	Pl = eval( (screen.width / 2) - (Pw / 2) );
	Pt = eval( (screen.height / 2) - (Ph / 2) );
	options = "directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width="+Pw+",height="+Ph+"top="+Pt+", left="+Pl;
	window.open(url, "Envoyer_a_un_ami", options);
}
function envoiamiaveclien(lien) {
	portlet_id = "envoiami";
	var reg=new RegExp("&", "g");
	link = lien;
	link = link.replace(reg,"*");
	url = "/envoi-a-un-ami?p_p_id="+portlet_id+"&p_p_mode=view&p_p_lifecycle=1&p_p_state=normal&_"+portlet_id+"_link="+link;
	Pw = 780;
	Ph = 700;
	Pl = eval( (screen.width / 2) - (Pw / 2) );
	Pt = eval( (screen.height / 2) - (Ph / 2) );
	options = "directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width="+Pw+",height="+Ph+"top="+Pt+", left="+Pl;
	window.open(url, "Envoyer_a_un_ami", options);
}

/* Fonctions utilisées pour l'affichage des evenements */

function showHide(id) {
	img = document.getElementById('pic_'+id);
	row = document.getElementById('row_'+id);
	if (row.style.display == 'none') {
		row.style.display = '';
		if (img)
			img.src = '/html/themes/promenade/images/cg92/picto_moins.gif';
	} else {
		row.style.display = 'none';
		if (img)
			img.src = '/html/themes/promenade/images/cg92/picto_plus.gif';
	}
}

function showAll() {
	rowId = 0;
	while (document.getElementById('row_'+rowId)) {
		document.getElementById('row_'+rowId).style.display = '';
		if (document.getElementById('pic_'+rowId))
			document.getElementById('pic_'+rowId).src = '/html/themes/promenade/images/cg92/picto_moins.gif';
		rowId++;
	}
	document.getElementById('li_tc').className = 'first cg_EventList_Affichage_On';
	document.getElementById('li_list').className = 'last';
}

function hideAll() {
	rowId = 0;
	while (document.getElementById('row_'+rowId)) {
		document.getElementById('row_'+rowId).style.display = 'none';
		if (document.getElementById('pic_'+rowId))
			document.getElementById('pic_'+rowId).src = '/html/themes/promenade/images/cg92/picto_plus.gif';
		rowId++;
	}
	document.getElementById('li_tc').className = 'first';
	document.getElementById('li_list').className = 'last cg_EventList_Affichage_On';
}

