﻿// JScript File

function Main()
{
    // If the username field exists then give the focus to this
    var inpUserName = document.getElementById("inpUserName");
    if(inpUserName)
    {
        inpUserName.select()
        inpUserName.focus()
    }
}

function DisplayProducts(title)
{
    var pElem1, pElem2, divElem;
    pElem1 = document.getElementById("p1" + title);
    pElem2 = document.getElementById("p2" + title);
    divElem = document.getElementById("div" + title);
    if(divElem && pElem1 && pElem2)
    {
        if(divElem.style.display=="none")
        {
            divElem.style.display="block";
            pElem1.style.display="none";
            pElem2.style.display="block";
        }
        else
        {
            divElem.style.display="none";
            pElem1.style.display="block";
            pElem2.style.display="none";
        }
    
    }
    
}

