﻿// JScript File
var agree;

function askDelete(TITLE)
{
 agree=  confirm("Are you sure you want to delete this "+TITLE+"?");
 if (agree)
 {
   return true;
 }
 return false;
	 
}
//function test()
//{
//    alert(window.location.href);
//    var your_url=window.location.href;
//    var is_protocol_ok=your_url.indexOf('default');
//    if (is_protocol_ok==-1)
//     { 
//      alert('Error: Your url should begin with http://');
//      get_url();
//     }
//}


