/**
* confirmation of web site removal
* @param url string - the url should be loaded
* @param message_text string - confirm window text
*/

function checkout_remove(url, message_text) 
{
   if (confirm(message_text)) 
   {
      location.href=url;
   }
}
