function confirmdelete() { //v2.0
  if(confirm("Are you sure you want to completely delete this page?")){
	document.deleteform.submit();
  }
}


function deletepanel(myform) { //v2.0
  if(confirm("Are you sure you want to completely delete this panel?")){
	myform.submit();
  }
}

function deleteblurb(myform) { //v2.0
  if(confirm("Are you sure you want to completely delete this blurb?")){
	myform.submit();
  }
}

function deletedomain(myform) { //v2.0
  if(confirm("Are you sure you want to completely delete this domain? This will delete the page settings and all panels associated with this domain!")){
	document.deleteDomainForm.submit();
  }
}

function deletegroup(myform) { //v2.0
  if(confirm("Are you sure you want to completely delete this group? All domains assigned to this group will no longer be associated with any group!")){
	myform.submit();
  }
}