<!-- hide script from old browsers

function menuItem( fileName, iStatus, iWidth, iHeight, iResizable, iToolbar, iScrollbars ) {
	var mywindow;
	window.name = "main";
	mywindow=window.open(fileName, 'Duffs', "status=" + iStatus + ",width=" + iWidth + ",height=" + iHeight + ",left='0',top='0',resizable=" + iResizable + ",toolbar=" + iToolbar + ",scrollbars=" + iScrollbars );
	mywindow.focus();
}

//-->