// JavaScript Document
function intro( oVinculo )
{
	// Pantalla
	nAltura = screen.height / 2 ;
	nAnchura = screen.width / 2 ;
	// Ventana
	var nAlto = 325 ;
	var nAncho = 439 ;
	window.open( oVinculo.href, oVinculo.target , 'height=' + nAlto + ',left=' + ( nAnchura - ( nAncho / 2 ) ) + ',top=' + ( nAltura - ( nAlto / 2 ) ) + ',width=' + nAncho ); 
}

function legal( oVinculo )
{
	// Pantalla
	nAltura = screen.height / 2 ;
	nAnchura = screen.width / 2 ;
	// Ventana
	var nAlto = 475;
	var nAncho = 439 ;
	window.open( oVinculo.href, oVinculo.target ,'scrollbars=yes, height=' + nAlto + ',left=' + ( nAnchura - ( nAncho / 2 ) ) + ',top=' + ( nAltura - ( nAlto / 2 ) ) + ',width=' + nAncho ); 
}

function privado( oVinculo )
{
	// Pantalla
	nAltura = screen.height / 2 ;
	nAnchura = screen.width / 2 ;
	// Ventana
	var nAlto = 475;
	var nAncho = 439 ;
	window.open( oVinculo.href, oVinculo.target ,'scrollbars=yes, height=' + nAlto + ',left=' + ( nAnchura - ( nAncho / 2 ) ) + ',top=' + ( nAltura - ( nAlto / 2 ) ) + ',width=' + nAncho ); 
}
