// basic services for other scripts

function GetElement(id)
{
	// try ie style
	if (document.all)
		return document.all[id];
	// try netscape style
	if (document[id])
		return document[id];
	// try dom style
	return document.getElementById(id);
}
