function nobei_futurebox(title,texte,texteend,buttonok,time){$('<div id="futurebox" />').appendTo("body");$('<div id="futurebox_bloc" />').appendTo("body");$('<div id="futurebox_head" />').appendTo("#futurebox_bloc");$('<div id="futurebox_center" /><div style="clear:both" />').appendTo("#futurebox_bloc");$('<div id="futurebox_bottom" />').appendTo("#futurebox_bloc");if(title!="CV en cours d'envoi"){$('<div id="futurebox_close" />').appendTo("#futurebox_head");}$('<div id="futurebox_title">'+title+"</div>").appendTo("#futurebox_center");$('<div id="futurebox_text">'+texte+"</div>").appendTo("#futurebox_center");$('<div id="futurebox_textend">'+texteend+"</div>").appendTo("#futurebox_center");if(buttonok){$('<div id="futurebox_ok"><span id="okbtn">OK</span></div>').appendTo("#futurebox_center");}centerThis("#futurebox_bloc");$("#futurebox_bloc").css("top","10px");$(window).resize(function(){centerThis("#futurebox_bloc");});$("#futurebox_bloc").animate({top:(($(window).height()-$("#futurebox_bloc").height())/2)},time,"easeOutQuad");$("#futurebox_close, #okbtn").click(function(){$("#futurebox_bloc iframe").hide();$("#futurebox_bloc").remove();$("#futurebox").fadeOut(time,function(){$("#futurebox").remove();});});}function centerThis(element){$(element).css({top:(($(window).height()-$(element).height())/2),left:(($(window).width()-$(element).width())/2)});}function fullscreen(element){$(element).css({top:0,left:0,width:$(window).width(),height:$(window).height()+window.scrollY*2});}
