// JavaScript Document
function opcions(){
    if (document.seleccio.opcio.selectedIndex == 0) alert("Por favor, selecciona una opción");
    else if (document.seleccio.opcio.selectedIndex ==  1) window.location.href = "http://www.poliedric.com/servicios/optimizacion.html";
    else if (document.seleccio.opcio.selectedIndex ==  2) window.location.href = "http://www.poliedric.com/servicios/marketingbuscadores.html";
    else if (document.seleccio.opcio.selectedIndex ==  3) window.location.href = 'http://www.poliedric.com/servicios/contenido.html';
    else if (document.seleccio.opcio.selectedIndex ==  4) window.location.href = 'http://www.poliedric.com/servicios/newsletter.html';
    else if (document.seleccio.opcio.selectedIndex ==  5) window.location.href = 'http://www.poliedric.com/ayuda.html';
}

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