
		function confirm_delete(theLink)
		{
				var is_confirmed = confirm("Are you sure you want to delete it ?");
				if (is_confirmed) {
						if ( typeof(theLink.href) != 'undefined' ) {
								theLink.href += '&is_js_confirmed=1';
						} else if ( typeof(theLink.form) != 'undefined' ) {
								theLink.form.action += '?is_js_confirmed=1';
						}
				}
		
				return is_confirmed;
		} // end of the 'confirmLink()' function

