function modalBoxUrl(url,width,height)
{
	jQuery.fn.modalBox({ 
		directCall : {data : '<iframe style="width:'+width+'px; height:'+height+'px; border:none;" src='+url+'&popup=1></iframe>'},
		setWidthOfModalLayer : width+100,
		minimalTopSpacingOfModalbox : 30,
		killModalboxWithCloseButtonOnly : 'true'
	});
}

function modalBoxDiv(classe,id)
{
	jQuery("a."+classe).modalBox({ 
		getStaticContentFrom : "#"+id,
		minimalTopSpacingOfModalbox : 30,
		killModalboxWithCloseButtonOnly : 'true'
	});
}

function popup(url,width,height)
{
	var haut=(screen.height-height)/2;
	var Gauche=(screen.width-width)/2;
	var options="top="+haut+",left="+Gauche+",width="+width+",height="+height+",directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
	
	window.open(url,'popup',options);
}

$(document).ready(function(){
$('.popupActu').click(function(){
	var url=$(this).attr('href');
	var width=800;
	var height=600;
	var haut=(screen.height-height)/2;
	var Gauche=(screen.width-width)/2;
	var options="top="+haut+",left="+Gauche+",width="+width+",height="+height+",directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
	
	window.open(url,'popup',options);
	
	return false;
})});
