// Javascript Web Utils
// Written by the PATD Programming Group (David Prater, Patrick Smith, Rob Flynn)
// Unlimited License Granted to The Fyfth Network
// Unlimited License Granted to Omega Technology Group

function $(obj){
	return document.getElementById(obj);	
} // end magic $ function

function hideObj(obj){
	document.getElementById(obj).style.display = 'none';
	document.getElementById(obj).style.visibility = 'hidden';
} // end function hideObj

function showObj(obj){
	document.getElementById(obj).style.display = '';
	document.getElementById(obj).style.visibility = 'visible';
} // end function showObj

