// called by any link or button on a page which submits a form. Since the entire
// page is one form, we must specify where our data is going.
function doAction(action)
{
		//document.forms["actions"].action = action
		document.forms["actions"].submit();
}