﻿function inputStyle(inputID)
{
    //  Change style
    var inputBox
    inputBox = document.getElementById(inputID);

    if (inputBox.className == "inputOver")
    {
        inputBox.className = "inputOut";
    }
    else
    {
        inputBox.className = "inputOver";
    }
}  

function showBox(element)
{
    var box;
    
    box = document.getElementById('ctl00_overlay');    
    box.style.display="block";
    if (element == 'box')
        box = document.getElementById('ctl00_box'); 
    else
        box = document.getElementById('ctl00_box2');   
    box.style.display="block";
} 

function hideBox()
{
    var box;
    
    box = document.getElementById('ctl00_overlay');     
    box.style.display="none";
    
    box = document.getElementById('ctl00_box'); 
    box.style.display="none";
    box = document.getElementById('ctl00_box2');        
    box.style.display="none";
}
