if(!document.getElementById){
	if(document.all){
		Champ=function(){
			if(typeof (document.all[arguments[0]])!="undefined"){return document.all[arguments[0]]}else{return null}
		}
	}else if(document.layers){
		Champ=function(){
			if(typeof (document[arguments[0]])!="undefined"){return document[arguments[0]]}else{return null}
		}
	}
}else{
	Champ=function(){
		if(typeof (document.getElementById(arguments[0]))!="undefined"){
			return document.getElementById(arguments[0])
		}else{
			if(typeof (document.getElementByName(arguments[0]))!="undefined"){
				return document.getElementByName(arguments[0])
			}else{
				return null
			}
		}
	}
}