function getObj(strId) {
	return document.getElementById(strId);
}

function showObj(strId) {
	document.getElementById(strId).style.display='block';
}
function hideObj(strId) {
	document.getElementById(strId).style.display='none';
}

function showhideObj(strId) {
	if (getObj(strId).style.display == 'none') 
		showObj(strId); 
	else hideObj(strId);
}