// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
var windowSizeArray = [ "width=605,height=700",
                            "width=615,height=700,scrollbars=1,resizable=1,status=1" ];

$(document).ready(function(){

  $('.newWindow').click(function (event){

    var url = $(this).attr("href");
    var windowName = "popUp";//$(this).attr("name");

    window.open(url, windowName, "width=615,height=700,scrollbars=1,resizable=1,status=1");

    event.preventDefault();

  });
  
  
});

