<!--
function confirmation()
{
 var a=confirmation.arguments, where_to;
 if (a[0] != '' )
 {
   where_to = confirm(a[0]);
   if (where_to == true)
   {
     window.location=a[1];
   }
 }
}
-->

