function goToLink(menu) {

	if (menu.selectedIndex != 0) {

		window.open(menu.options[menu.selectedIndex].value);

	}
}

function isEmpty(s) {

 	return ((s == null) || (s.length == 0))

}

function checkLogin(form) {

	if ((isEmpty(document.login.username.value)) || (isEmpty(document.login.password.value))) {

		alert('Please enter both a username and password in the fields provided.');
		return false;

	}

	return true;

}

function printFlyer(URL) {

	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=500,height=530');");

}