﻿// JScript 文件
function reloadonline()
{ 
    document.getElementById("online").src = "Images/ValidationCodeImgOnline.aspx";
} 

function changelocation(locationid)
{
    document.form1.ddlExpert.length = 1; 
    var locationid=locationid;
    var i;
    for (i=0;i < onecount; i++)
    {
        if (subcat[i][1] == locationid)
        { 
            document.form1.ddlExpert.options[document.form1.ddlExpert.length] = new Option(subcat[i][0], subcat[i][2]);
        }        
    }
    document.getElementById('inExpertID').value = 0;
}  
    
function selectExpert()
{
    document.getElementById('inExpertID').value = document.getElementById('ddlExpert').options[document.getElementById('ddlExpert').selectedIndex].value;
} 
