<!--			
// pop-ups a window asking to confirm or cancel (displaying the 'message')
// if OK, redirects to url, if no, cancels
function confirmgo(message,url) {
				if (confirm(message)) {
				window.location=url;
				}
			}


//-->

