// JavaScript Document
function opcions(){
    if (document.seleccio.opcio.selectedIndex == 0) alert("Si us plau, seleccioneu una opció");
    else if (document.seleccio.opcio.selectedIndex ==  1) window.location.href = "http://www.poliedric.com/cat/webmarqueting.htm";
    else if (document.seleccio.opcio.selectedIndex ==  2) window.location.href = "http://www.poliedric.com/cat/serveis/cercadors.htm";
    else if (document.seleccio.opcio.selectedIndex ==  3) window.location.href = 'http://www.poliedric.com/cat/serveis/continguts.htm';
    else if (document.seleccio.opcio.selectedIndex ==  4) window.location.href = 'http://www.poliedric.com/cat/serveis/promocio.htm';
    else if (document.seleccio.opcio.selectedIndex ==  5) window.location.href = 'http://www.poliedric.com//ayuda.html';
}

function restaura(){
document.seleccio.opcio.selectedIndex = 0;
}

