function GetObject(id) {
	if (navigator.appName.substring(0,2) !="Mi")
		return document.getElementById(id);
	else return document.all[id];
}

function HelpSystem(id) {
	GetObject(id).style.display = (	GetObject(id).style.display == 'none') ? 'Block' : 'none';
}

