function bookMark(title, url) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if ( window.external ) { // IE Favorite
		window.external.AddFavorite(url, title); 
	}
}

function inputClick(id, defval) {
	val = document.getElementById(id).value;
	if (val == defval) {
		document.getElementById(id).value = '';
	}
}

function inputBlur(id, defval) {
	val = document.getElementById(id).value;
	if (val == '') {
		document.getElementById(id).value = defval;
	}
}

function changeTab(tab) {
	if (tab == 'news') {
		$('newsbox').style.display = 'block';
		$('eventsbox').style.display = 'none';
		$('news').addClass('on');
		$('events').removeClass('on');		
	} else {
		$('eventsbox').style.display = 'block';
		$('newsbox').style.display = 'none';
		$('events').addClass('on');
		$('news').removeClass('on');
	}
}

function changePage(url) {
	if (confirm('Please note: If you leave this page you will be logged out of the Customer Zone. Do you want to leave this page?'))	{
		document.location = url;
	}
}
