var PrintWindow;

jQuery(document).ready( 
  function() 
  {
    jQuery('.printPage').click( 
      function() 
      {
        try
        {
            PrintWindow=window.open( '/print.html','PrintWindow','width=800,height=700,status=yes,menubar=no,scrollbars=yes,resizeable=no' );                                   
            PrintWindow.focus();
        } 
          catch (e) 
        {
              alert(e);
        }        
        return false;
      }
    );
  }
);
