function loadPage(link, confirmText) {
	if(confirmText) {
		if(!confirm(confirmText))
			return false;
	}
	window.location = link;
}



