function popup(close_img,close_title){$('a.poplight[href^=#]').click(function(){var popID=$(this).attr('rel');var popURL=$(this).attr('href');var query=popURL.split('?');var dim=query[1].split('&');var popWidth=dim[0].split('=')[1];$('#'+popID).fadeIn().css({'width':Number(popWidth)}).prepend('<a href="#" class="close"><img src="'+close_img+'" class="btn_close" title="'+close_title+'" alt="'+close_title+'" /></a>');var popMargTop=($('#'+popID).height()+80)/2;var popMargLeft=($('#'+popID).width()+80)/2;$('#'+popID).css({'margin-top':-popMargTop,'margin-left':-popMargLeft});$('body').append('<div id="fade"></div>');$('#fade').css({'filter':'alpha(opacity=80)'}).fadeIn();return false;});$('a.close, #fade').live('click',function(){$('#fade , .popup_block').fadeOut(function(){$('#fade, a.close').remove();});return false;});}
