<!--


function DelSection(page_ID,section_ID){
     input_box=confirm("Are you sure you want to delete this SECTION and its headers?");
          if (input_box==true)
{ 
// Output when OK is clicked
window.location.href = "index.asp?page=index_members&delete=yes&page_ID="+page_ID+"&section_ID="+section_ID;

}
else
{
// Output when Cancel is clicked
}
}

 
 
function DelFacility(ID){
     input_box=confirm("Are you sure you want to delete this Studio Facility Entry?");
          if (input_box==true)
{ 
// Output when OK is clicked
window.location.href = "index.asp?page=index_members&delete=yes&studios_ID="+ID;

}
else
{
// Output when Cancel is clicked
}
}
 
 
// --->
