function any_pop(url,width,height)
	{
		newWin = window.open(url, "", "width="+ width +",height="+ height +",toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
		newWin.focus();
	}
	


function confirmDelete(delUrl) {
  if (confirm("Are you sure you want to delete")) {
    document.location = delUrl;
  }
}

function show(ii,jj)
{
if (document.getElementById(ii).checked)
	document.getElementById(jj).style.display = 'block';
else
	document.getElementById(jj).style.display = 'none';
}
