// Kill the spam
function mail ( end, middle, begin, subject ) {
        var muck = middle + "." + end;
        muck = "mailto:" + begin + "@" + muck;
        if ( subject ) { muck += "?subject=" + subject; }
                window.location.href = muck;
        }
        
// News Pop-up
function newsWindow() {
        window.open("","news","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width=500,height=400");
                }
                
// Jump Menu
function load_month(which_form) {
	self.location.href=which_form.url.options[which_form.url.selectedIndex].value;
	}