﻿
	        

function AddToSecond(text,value)
{
    var oOption = document.createElement("OPTION");
    selSecond.options.add(oOption);
    oOption.innerText = text;
    oOption.value = value;
}

function OnSelChange()
{
    switch(selFirst.value)
    {
    case "1":
        selSecond.innerHTML="";
        AddToSecond("COULTER Analyzer","hr/ITCoulter.aspx");
        AddToSecond("ABBOTT Analyzer","hr/ITAbbott.aspx");
        AddToSecond("SYSMEX Analyzer","hr/ITSysmex.aspx");
        AddToSecond("ABX Analyzer","hr/ITAbx.aspx");
        AddToSecond("MINDRAY Analyzer","hr/ITMaiRui.aspx");
        AddToSecond("DREW Analyzer","hr/ITDanNeng.aspx");
        AddToSecond("NIHON KOHDEN Analyzer","hr/ITRBGD.aspx");
        AddToSecond("DIATRON Analyzer","hr/ITOther.aspx#DIATRON");
        AddToSecond("ERMA Analyzer","hr/ITOther.aspx#riBenJiTai");
        AddToSecond("ORPHEE MYTHIC Analyzer","hr/ITOther.aspx#ORPHEE");
        AddToSecond("SWELAB Analyzer","hr/ITOther.aspx#ruiShi");
        AddToSecond("HYCEL Analyzer","hr/ITOther.aspx#HYCEL");
        AddToSecond("MEDONIC Analyzer","hr/ITOther.aspx#niKe");
        AddToSecond("SEAC Analyzer","hr/ITOther.aspx#xiYaKe");
        AddToSecond("BAYER ADVIA analizzatore","hr/ITBaier.aspx");
        break;
    case "2":
        selSecond.innerHTML="";
        AddToSecond("Beckman-reagenti specifici","hr/ITSHLC.aspx");
        AddToSecond("Generale biologici e reagenti chimici","hr/ITSHTY.aspx");
        AddToSecond("Immunoturbidimetry reagenti","hr/ITUpdating.aspx");
        break;
    case "3":    
        selSecond.innerHTML="";
        AddToSecond("Elettroliti reagenti","hr/ITDJZ.aspx");
        AddToSecond("AVL elettrolito analizzatore di reagente","hr/ITUpdating.aspx");
        AddToSecond("MEDICA elettrolito analizzatore di reagente pacchetto","hr/ITDJZ.aspx");	
        break;
    case "4":
        selSecond.innerHTML="";
        AddToSecond("UF-50","hr/ITNCZ.aspx");
        AddToSecond("UF-100","hr/ITNCZ.aspx");		
        break;
    case "5":
        selSecond.innerHTML="";
        AddToSecond("Beckman Access tampone di lavaggio","ITws.aspx");
        break;
    }
}

OnSelChange();

function GoUrl()
{
    window.location=selSecond.value
}

