
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

    

function abrirPage(v){

$().ajaxStart(function() { $('#loading').show(); });

$("#CORPO_MEIO_PRIN").load(v);
$().ajaxStop(function() { $('#loading').hide(); });
}









function abrir(url){
    
     document.location.href = url;
    
}

function Fotos(v){

       	var w = 700;
	var h = 450;
	// Calculo para centralizar Janela
  	var esquerda = (screen.width - w)/2;
  	var topo = (screen.height - h)/2;



	window.open(v,'WIN','height=' + h + ', width=' + w + ', top=' + topo + ', left=' + esquerda+',scrollbars=no');

}

function player(){
	
       	var w = 400;
	var h = 250;
	// Calculo para centralizar Janela
  	var esquerda = (screen.width - w)/2;
  	var topo = (screen.height - h)/2;		
	
         
         
	window.open("player.jsp",'WIN','height=' + h + ', width=' + w + ', top=' + topo + ', left=' + esquerda+',scrollbars=no'); 
		
}
  