function confirm_url (url, text) {
   if (confirm(text)) {
	  this.document.location = url;
   }
}


