/**
 * Javascript File
 * Project: Carrard-Associés
 */

jQuery(function($){
   
   $("#option_print").click(function(){
      
      var url = $(this).attr('href');
      
      var popup = window.open(url, 'print_window', 'height=600, width=900, scrollbars=yes, resizable=yes, toolbar=no');
      popup.focus();
      
      return false;
   });
   
});

function printThisPage(page)
{
   if(!window.focus()) window.focus();
   window.print();
}
