function getObject(id){
	if (document.getElementById) return document.getElementById(id);
	if (document.all) return document.all[id];
	return document.layers[id];
}


