﻿// Warnhinweis - Speichern verboten
function verboten() {
		alert("Download leider nicht moeglich!");
		return false;
		}
		
// Verhindert speichern der Bilder		
function nosave() {
		if(document.images)
		for(i=0;i<document.images.length;i++)
		document.images[i].onmousedown = verboten;
		}