function getObj(objId){
	if (document.all){
		docObj = document.all[objId];
	}else{
		docObj = document.getElementById(objId);
	}
	return docObj;
}
