function obrirImatge(nom) {
    w = open(nom, 'img', 'left=600, top=150, width=290, height=300, scrollbars=1, menubar=0, addressbar=0, resizable=1, statusbar=0');
    w.focus();
}

function enviarCorreu() {
    mt = 'm' + 'a' + 'i' + 'l' + 't' + 'o' + ':';
    correu = 'ventas'; 
    domini = 'extrusistemasbcn' + '.' + 'es';
    window.location.href = mt + correu + '@' + domini;
}

function inicialitzar() {
    idPeu = document.getElementById('peu');
    idPeu.style.visibility = 'hidden';
    idPeu.style.width = '0px';
    crearArrayOpacitats(90);
    activarFadeIn('logo', '', 'activarMovimentBanner();');
}

function inicialitzarInterior(nom) {
    var nomsMenu = new Array('quienes', 'catalogo', 'contactar');
    for (i = 0; i < nomsMenu.length; i++) {
        idDiv = document.getElementById(nomsMenu[i]);
        if (nomsMenu[i] == nom) {
            idDiv.style.color = 'rgb(71,36,160)';
            idDiv.style.backgroundColor = 'rgb(171,155,209)';
            idDiv.style.fontSize = '16px'; 
            idDiv.style.borderLeft = 'solid 1px white';
            idDiv.style.borderTop = 'solid 1px white';
            idDiv.style.borderRight = 'solid 1px white';
            idDiv.style.borderBottom = 'solid 0px';
            idDiv.style.zIndex = '8';
        }
        else {
            idDiv.style.color = 'white';
            idDiv.style.backgroundColor = 'transparent';
            idDiv.style.fontSize = '16px'; 
            idDiv.style.borderLeft = 'solid 0px';
            idDiv.style.borderTop = 'solid 0px';
            idDiv.style.borderRight = 'solid 0px';
            idDiv.style.borderBottom = 'solid 1px white';
            idDiv.style.zIndex = '1';
        }
    }
    
}

function canviarCursor(tipus) {
    if (tipus == 'normal') {
        document.body.style.cursor = 'default';
    }
    else if (tipus == 'link') {
        document.body.style.cursor = 'pointer';
    }
}

function mouseOverMenu(opcio) {
    opcio.src = 'imatges/' + opcio.id + '-over.jpg';
}

function mouseOutMenu(opcio) {
    opcio.src = 'imatges/' + opcio.id + '.jpg';
}

function mouseOverMenuInterior(opcio) {
    opcio.src = 'imatges/' + opcio.id + '_int-over.jpg';
}

function mouseOutMenuInterior(opcio) {
    opcio.src = 'imatges/' + opcio.id + '_int.jpg';
}

var idPeu;
var idInt;
var posIni = 1000;
var incrementX = 40;
function activarMovimentBanner() {
    //	alert('activarMovimentBanner() ');
    if (idInt) clearInterval(idInt);
    idPeu.style.left = '' + posIni + 'px';
    idPeu.style.width = '0px';
    idPeu.style.visibility = 'visible';
    idInt = setInterval('moviment()', 50);
    
}

function moviment() {
    if (posIni <= 0) {
        posIni = 0;
        clearInterval(idInt);
        idInt = null;
        idPeu.style.left = '0px';
        idPeu.style.width = '1000px';
        return;
    }
    idPeu.style.left = '' + posIni + 'px';
    idPeu.style.width = '' + (1000 - posIni) + 'px';
    posIni -= incrementX;
}

