//JavaScript Document
//hide show div emements
//Raj Somasundaram 
function hideElement(divId)
{
	document.getElementById(divId).style.display = 'none';
}

function showElement(divId)
{
	document.getElementById(divId).style.display = 'block';
}
