
// *************************************************************
// **
// **     	getObj
// **		get an element by id 
// **
// **************************************************************

function getObj(id){
	if(document.all){
		if(document.all[id]){
			return document.all[id];
		}
	}
	if(document.getElementById(id)){
		return document.getElementById(id);
	}
	return false;
}
