//Funktionen für den Hover-Effekt in Tabellen
function on(tr){	
		document.getElementById(tr).style.backgroundColor = "#F99339";
}

function off(tr){
		document.getElementById(tr).style.backgroundColor = "#A0A0A0";
}


function confirm_img_delete(img_id){
	check = confirm("Soll das Bild mit der ID " + img_id + " wirklich gelöscht werden?");
	if(check == true){
		window.location.href = "admin_images.php?action=delete_img&delete_id=" + img_id;
	}
}

function delete_from_faq(id){
	if(confirm("Soll der Eintrag mit der ID " + id + " wirklich gelöscht werden?")){
		var Ziel = window.prompt("Ihr Wunsch-URI:", "");
  		window.location.href = Ziel;	
  	}
}