
 function copyCode(FeldID)
 {
	if( document.all )
	{
		document.getElementById(FeldID).focus();
		document.getElementById(FeldID).select();
		Bereich = document.getElementById(FeldID).createTextRange();
		Bereich.execCommand("Copy");
	} else
	  {
		alert("Sorry, das funktioniert leider nur im Internet-Explorer.\r\nMarkiere bitte den Text mit der Maus und wähle dann nach einem Rechtsklick \"Kopieren\" aus.");
	  }
 }


 function sicher(ziel)
 {
	var Checkdelete = confirm("Sicher?");
	if( Checkdelete != false )
	{
		self.location.href = ziel;
	}
 }


 function counterbilder(num)
 {
	var wleft     = (screen.availWidth - 550) / 2;
	var wtop      = (screen.availHeight - 400) / 2;
 	params        = ('width=550,height=400,left='+ wleft +',top='+ wtop +',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
	counterWindow = open('counterbilder.php?c='+num, 'counter', params);
 }


 function counterVorschau(num)
 {
	var wleft     = (screen.availWidth - 300) / 2;
	var wtop      = (screen.availHeight - 200) / 2;
 	params        = ('width=300,height=200,left='+ wleft +',top='+ wtop +',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
	counterWindow = open('counterVorschau.php?id='+num, 'counter', params);
 }
