function prompt_fun(a){ $(a).after("
"); if($('body').height()>$(window).height()){ $('#layer1').height($('body').height()); }else{ $('#layer1').height($(window).height()); } $('#layer1').width($('body').width()); $(a).css({left:($('body').width()-$(a).width())/2,top:$(window).scrolltop()+($(window).height()-$(a).height())/2}); $('#layer1').fadeto("fast",0.6); $(a).show(); //$(a).fadein("slow"); $('#layer1').click(function(){ close_prompt_fun(a); }) } function close_prompt_fun(a){ //$(a).fadeout("fast"); $(a).hide(); $('#layer1').fadeout("slow",function(){ $('#layer1').remove(); }); }