﻿
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function confirmSubmit(url)
{
var agree=confirm("Are you sure you wish to delete this item? If you are unsure, select \"Cancel\"");
if (agree)
	window.location =  url;
}

