function getElementObject (element)
{
	if (document.getElementById)
		return document.getElementById (element);
	else 
	if (document.all)
		return document.all[element];
	else 
		return null;
}
