// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
//Popup Function
function popup(u, w, h, n, s, r, ext){
	var janela;
	var topo 	= 0;
	var esq 	= 0;
	var scrl 	= (s) ? 'yes' : 'no';
	var red 	= (r) ? 'yes' : 'no';
	janela = window.open (u, n, 'width=' + w + ', height=' + h + ', top=' + topo + ', left=' + esq + ', scrollbars=' + scrl + ', resizable=' +  red+ ', statusbar=no');
	janela.focus();
}