function jumpPage(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function movePage(targ,destination,restore){ //v3.0
  eval(targ+".location='"+destination+"'");
  if (restore) selObj.selectedIndex=0;
}

function confirm_delete(myID) {
	input_box=confirm("Wollen Sie dieses Bild wirklich löschen?\nDas Löschen kann nicht rückgängig gemacht werden!");
	if (input_box==true) { 
		window.location.href = "./index.php?delete=1&iid=" + myID;
	}
}
