<!--


function DelSection(page_ID,content_ID){
     input_box=confirm("Are you sure you want to delete this Section?");
          if (input_box==true)
{ 
// Output when OK is clicked
window.location.href = "index.asp?delete=yes&page_ID="+page_ID+"&content_ID="+content_ID;
}
else
{
// Output when Cancel is clicked
}
}  
   

function DelSectionImage(page_ID,content_ID){
     input_box=confirm("Are you sure you want to delete this Section Image?");
          if (input_box==true)
{ 
// Output when OK is clicked
window.location.href = "CM_sectionEdit.asp?delete=yes&page_ID="+page_ID+"&content_ID="+content_ID;
}
else
{
// Output when Cancel is clicked
}
}  
 
  
function delPhoneBookEntry(ID){
     input_box=confirm("Are you sure you want to delete this Phone Book Entry?");
          if (input_box==true)
{ 
// Output when OK is clicked
window.location.href = "CM_phoneBookEntry.asp?delete=yes&companyPhonebook_ID="+ID;
}
else
{
// Output when Cancel is clicked
}
}   
 
 
 
 
 
// --->





