function dompty(obj)
{
if (document.all) 
{//dom-1
return document.all[obj];
}
	else 
	{//Internet Explorer et Opera
	return document.getElementById(obj);
	}
}


