﻿/*  Kevin Kime.Com
 *
 *  Common javascript functions for KevinKime.com
 *  Last Modified: 1/11/2010
 *
 ******************************************************************/


/*ShiftDisplay
 *Switches the display for an element on a page. (none/blank);
 *should be used to hide/show elements. 
 *-Kevin Kime
 ******************************************************************/
 
function ShiftDisplay(ElementID) {
    var Item = document.getElementById(ElementID);
    if (Item.style.display == 'none') {
        Item.style.display = '';
    }
    else {
        Item.style.display = 'none';
    }
}
