// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function popUp(url, w, h) {
  var win = window.open(url, "", "status=1,height="+h+",width="+w+",resizable=1");
  win.focus();
}
function ajaxBusy(e) {
  document.body.className='ajax-busy';
}
function ajaxDone(e) {
  document.body.className='';
}
//$('#toggle-invoices-paid-5').replaceWith('<input type="checkbox" checked="checked" onclick="$.ajax({\\"url\\":\\"\/invoices\/toggle_invoices_paid\/5\\",\\"dataType\\":\\"script\\"});return false" id="toggle-invoices-paid-5"/>')
