/**
 * Nubitek
 *
 * utility functions to perform actions on form elements
 * 
 */
//function to display an element
function showElement(item)
{
document.getElementById(item).style.display="block"
}
//function to hide an element
function hideElement(item)
{
document.getElementById(item).style.display="none"
}
