﻿function setDealerInfo()
  {
    var hdn;
    hdn = document.getElementById("hdnZO_NUM");
    var txt = document.getElementById("userZO");
    if (hdn != null && txt != null)
    {
        txt.value = hdn.value;                                           
    }
    hdn = document.getElementById("hdnDealerName");
    var txt = document.getElementById("userName");
    if (hdn != null && txt != null)
    {
        txt.value = hdn.value;                                           
    }
    hdn = document.getElementById("hdnEmail");
    var txt = document.getElementById("userEmail");
    if (hdn != null && txt != null)
    {
        txt.value = hdn.value;                                           
    }
  }