//------------------------------------------------------
//-- Jump from a selector box without pressing submit --
//------------------------------------------------------
function Go(x) {
	if(x == "nothing") {
		document.forms[0].reset();
		document.forms[0].elements[0].blur();
	return;
	}
	else if(x == "end")
		self.location.href = x;
	else {
		self.location.href = x;
		document.forms[0].reset();
		document.forms[0].elements[0].blur();
	}
}

function openEventsWindow(theURL,winName) {
	window.open(theURL, 'numbers', "width=480,height=600");
}