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

popup = "";

function newWindow(mypage, myname) {
	var w		 = 670;
	var h		 = 750;
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  winprops ='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes';
  popup = window.open(mypage, myname, winprops);
	popup.focus();
	return false;
}


function closeWin()
{
	if (popup) {
  	popup.close();
  }
}

