function SetDisplay(ctr,displayStyle)
{
//Generic Solution to handle Different Browser Types and how to set Display
        if (window.ActiveXObject)//IE
        {
            ctr.style.display = displayStyle;
        }
        else if (document.implementation && document.implementation.createDocument) //Mozilla
        {
            ctr.setAttribute("style","display:" + displayStyle + ";");
        }
}
