function fnsSobre(menu) 
{
    var ruta= 'utilimg/'+menu+'1.jpg';
    
    document.getElementById(menu).src= ruta;
    document.getElementById(menu).style
}

function fnsFuera(menu) 
{
    var ruta= 'utilimg/'+ menu+'2.jpg';
    
    document.getElementById(menu).src= ruta;
}

function abrirPagina(destino) 
{
    var ruta= destino+'.html';
    if (destino== "online") 
    {
        var ruta= destino+'.php';
    }
    
	window.location = ruta;
}

function sobre(nombre,imgrande)
{    
    var ancho= document.getElementById(imgrande).style.width;
        alto=  document.getElementById(imgrande).style.height;
        
    document.getElementById(nombre).src = 'utilimg/ver.jpg';
    document.getElementById(imgrande).src = nombre;
    document.getElementById(imgrande).style.width= ancho;
    document.getElementById(imgrande).style.height= alto;         
}
 
 function fuera(nombre)
{
    document.getElementById(nombre).src = nombre;
}

function abrirPaginaLink(destino) 
{
    
    var ruta= 'onlinegaleria.php?frmSeleccion=carga%2F' + destino + '&enviar=VER';
    window.location = ruta;
	
}

function restCopia() 
{ 
	var msg="Todos los Derechos Reservados.\nCopyright © 2010 cinco6.com."; 
	alert(msg); 
	return true; 
} 


