<!--
 // confEdit confirms changes made
 function confEdit(a,b,c) {
  //fnam="document.conf.placeon"+a+".value";
  if (confirm("Do you want to change the track number to "+b+"?")) {
   window.location="admin/update.asp?a=862&id="+a+"&p="+b+"&sid="+c;
  }
 }

 // confDel confirms deleting stuff
 // calls from:
 // songs.asp line 57
 function confDel(a,ostr,i,typ) {
  nstr = ostr.replace(/¤/gi," ");
  switch(typ) {
   case 1:
    cstr="Do you really want to delete the song "+nstr+" permanently?";
    break;
   case 2:
    cstr="Do you really want to seperate the album ("+nstr+") from this song?";
    break;
   case 3:
    cstr="Do you really want to delete the album "+nstr+" permanently?";
    break;
   case 4:
    cstr="Do you really want to delete friend "+nstr+" permanently?";
    break;
    case 5:
    cstr="Do you really want to delete link "+nstr+" permanently?";
    break;
  }
  if (confirm(cstr)) {
   window.location="admin/update.asp?a="+a+"&id="+i;
  }
 }
//-->
