function setMenu(sho,divout) {
	var myshow="<CENTER>" + sho + "</CENTER>"
	if (document.getElementById) {
			document.getElementById(divout).contents = myshow;
			document.getElementById(divout).innerHTML = myshow;
	 }
	if (document.all) {
			document.all[divout].contents = myshow;
			document.all[divout].innerHTML = myshow;
	 }
	if (document.layers) { 
			var d = document.layers[divout]; 
			d.document.open();
			d.document.writeln(myshow);
			d.document.close();
	}
}

