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