function addMenu(parentid){
 var menucaption = prompt('Please enter the title for the menu you wish to create.', '');
 if ( (menucaption==' ') || (menucaption==null) )  { 
   alert("Cancelled..."); 
 } else {
     window.location='admin.php?page='+parentid+'&action=newmenu&newmenu='+escape(menucaption);
 }
}
function modMenu(parentid, caption){
 var menucaption = prompt('Please enter the new title.', caption);
 if ( (menucaption==' ') || (menucaption==null) || (menucaption==caption) )  { 
   alert("Cancelled..."); 
 } else {
     window.location='admin.php?page='+parentid+'&action=modmenu&menucaption='+escape(menucaption);
 }
}
function delMenu(menuid, caption){
 var where_to= confirm("Do you really want to delete the following menu?\n\""+caption+'"');
 if (where_to== true)
 {
    window.location='admin.php?page='+menuid+'&action=delmenu&menuid='+menuid;
 }
 else
     alert("Cancelled...");   
}