Bookmarklet
Bookmarklets are small javascript programs stored as Internet Explorer Favorites (or Firefox bookmarks).
These can be useful to automate repetitive development tasks in eWeb or iWeb. Install them by creating a new link with the javascript code as the URL.
eWeb Bookmarklets
Toggle Design - This alters the current URL to have either "design=yes" or "design=no"
javascript:location.href=location.href.replace(/[&]?design=[a-z]*/,'')+(location.href.indexOf('?')<0?'?':'')+'&design='+(document.body.innerHTML.indexOf('Edit Site Default Content')<0?'yes':'no');
Make this a browser favorite and you can easily turn eWeb CMS Design mode on and off.