Código:
  
 
<script src="${ctx}/js/jquery/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
var windowWidth2 = 950;
var windowHeight2 = 230;
var windowTop2 = parseInt((screen.availHeight/2) - (windowHeight2/2));
var windowLeft2 = parseInt((screen.availWidth/2) - (windowWidth2/2));
var windowSize2 = "width="+windowWidth2+",height="+windowHeight2+",left="+windowLeft2+",top="+windowTop2+", screenX="+windowLeft2+",screenY="+windowTop2+",scrollbars=no";
jQuery(document).ready(function(){
    $('#proximo').click(function (event){
    	window.close(this);
        var url2 = $(this).attr("href");
        var windowName2 = $(this).attr("name");
        window.open(url2, windowName2, windowSize2);
        event.preventDefault();
    });
});
	jQuery(document).ready(function(){
	    jQuery('#cancel').click(function (event){
	    	window.close(this);
	    });
	});
 

