function getElem(id)
{
	if (document.all) 
	{
		return (document.all(id));
	} else {
		return (document.getElementById(id));
	}
}
