$('faqs').addEvent('click', function(){
    create_popup('faqs_popup');
});

$('tos').addEvent('click', function(){
    create_popup('tos_popup');
});



var create_popup = function(popup_content){
    new StickyWinModal({
      content: $(popup_content).innerHTML,
      relativeTo: $('wrapper'),
      /*upper left corner of fxTarget */
      position: 'center',
      offset: {
        x: 0,
        y: 0
      },
      modalOptions: {
        modalStyle:{
          'background-color':'#000',
          'opacity':.6
        }
      }
    });
}
