	function check(Formular)
	{
		if(confirm("Wollen Sie das Template wirklich komplett überspielen?"))
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	function Sicherheitsabfrage(Formular)
	{
		if(confirm(Formular))
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	window.onload = function(){
		var oFCKeditor = new FCKeditor( 'MyTextarea', '', '750' ) ;
		oFCKeditor.BasePath = "admin/fckeditor/" ;
		oFCKeditor.ReplaceTextarea() ;
	}
	
	function backupContent(file) {
		var contents = document.getElementById("MyTextarea").value;
		var url = "http://dev.reiseversicherung-sofort.de/site_backup/backup.php?site=" + file;
		
		fenster = window.open(url, "backup_popup", "width=600,height=160,left=200,top=200,status=yes,scrollbars=yes,resizable=yes");
		fenster.focus();

	}
