window.onload=show;
function show(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function doPopup(popupPath) {
var newWin = window.open(popupPath, 'name', 'location=YES,status=YES,resizable=YES,scrollbars=YES,width=569,height=376,top=0,left=0');
newWin.focus();
}
