<!--

function goToURL(url) {
	location.href = url;
}

function decision(message, url){
  if(confirm(message)) location.href = url;
}
//-->