
function zoom_from_flash(lurl, titre){		//$('<a />').colorbox
	$.colorbox({open:true, href:lurl, width:"100%", height:"100%", title:titre});
	return false;
}
$(document).bind('cbox_open', function(){
	$('#flashcontent').css('visibility','hidden');
});
$(document).bind('cbox_closed', function(){
	$('#flashcontent').css('visibility','visible');
});

/*function NewWindow(mypage){
 var ua = window.navigator.userAgent;
 var msie = ua.indexOf ( "MSIE " )>-1;
 var mac = ua.indexOf("Mac")>-1;
 if (msie && ! mac) {
	 if (typeof win == "undefined") 
	window.open(mypage,'','fullscreen=1');
 }
 else {
	 var win=window.open(mypage,'pop','width='+screen.width+',height='+screen.height+',top=0,left=0,resizable=1');
	 win.focus();
 }
}
function agrandir() {
	window.moveTo(0, 0);
	window.resizeTo(screen.availWidth, screen.availHeight);
}*/

