Function change_name (p)
{
VAR new_name = prompt ("Change the photo name", "" ");
IF (new_name)
{
// Submit;
Document.name_form.new_name.value = new_name;
Document.name_form.pid.value = p;
//Window.open ("null.html ", "name"," HEIGHT = 200, width = 300 ");
Document.name_form.submit ();
}
}
Function DEL_ALBUM (P)
{
VAR new_name = confirm ("Do you want to delete this directory, and all of them below?");
IF (new_name)
{
// Submit;
Document.del_form._dir.value = p;
WINDOW.OPEN ("Null.html", "Name", "Height = 200, Width = 300");
Document.del_form.submit ();
}
}