
	    function Kommentieren(id) {
		 FensterGross = window.open("http://www.suscon.net/Kommentieren.asp?id=" + id, "Kommentar","top=10,left=10,width=800,height=600,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}

	    function VKommentieren(id) {
		 FensterGross = window.open("http://www.suscon.net/VKommentieren.asp?id=" + id, "Kommentar","top=10,left=10,width=800,height=600,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}
	    
	    function BeitragEinstellen(id,Rubrik) {
		 FensterGross = window.open("http://www.suscon.net/Edit_Eintrag.asp?id=" + id + "&Rubrik=" + Rubrik, "Kommentar","top=10,left=10,width=800,height=600,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}
	    
	    function Login() {
		 FensterGross = window.open("http://www.suscon.net/Login.asp", "Login", "top=10,left=10,width=600,height=300,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}

	    function Loeschen(id) {
		 FensterGross = window.open("http://www.suscon.net/Delete_Eintrag.asp?ID="+id, "Login", "top=10,left=10,width=300,height=100,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}

	    function PasswortZusenden() {
		 FensterGross = window.open("http://www.suscon.net/PasswortZusenden.asp", "PasswortZusenden", "top=10,left=10,width=600,height=300,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}

	    function ThemaAuswaehlen() {
		 FensterGross = window.open("http://www.suscon.net/ThemaAuswaehlen.asp", "PasswortZusenden", "top=10,left=10,width=600,height=300,status=no,resizable=no,scrollbars=no");
		 FensterGross.focus();}
 

    /* This script and many more are available free online at
    The JavaScript Source!! http://javascript.internet.com
    Created by: Mr J | http://www.huntingground.net/ */
    scrollStep = 3
    timerLeft = ""
    timerRight = ""

    function toLeft(id) { document.getElementById(id).scrollLeft = 0 }

    function scrollDivLeft(id) {
        clearTimeout(timerRight)
        document.getElementById(id).scrollLeft += scrollStep
        timerRight = setTimeout("scrollDivLeft('" + id + "')", 10)
    }
    function scrollDivRight(id) {
        clearTimeout(timerLeft)
        document.getElementById(id).scrollLeft -= scrollStep
        timerLeft = setTimeout("scrollDivRight('" + id + "')", 10)
    }

    function toRight(id) { document.getElementById(id).scrollLeft = document.getElementById(id).scrollWidth }
    function stopMe() {
        clearTimeout(timerRight)
        clearTimeout(timerLeft)
    }
    function PlayVideo(id, Titel, Beschreibung) {
        var player = swfobject.getObjectById("videoCanvas");
        playervars.video = id + ".flv";
        playervars.preview = id + ".jpg";
        playervars.autoplay = "true";
        player.updatePlayer(playervars);
        document.getElementById("Headline").innerHTML = '<STRONG>' + Titel + '</STRONG><BR>';
        document.getElementById("Description").innerHTML = Beschreibung;

    }



	/************************************************************************************************************
	(C) www.dhtmlgoodies.com, November 2005
	
	This is a script from www.dhtmlgoodies.com. You will find this and a lot of other scripts at our website.	
	
	Terms of use:
	You are free to use this script as long as the copyright message is kept intact. However, you may not
	redistribute, sell or repost it without our permission.
	
	Thank you!
	
	www.dhtmlgoodies.com
	Alf Magne Kalleland
	
	************************************************************************************************************/
		
	var slideSpeed = 5;
	var slideTimeBetweenSteps = 30;
	
	
	var scrollingContainer = false;
	var scrollingContent = false;
	var containerHeight;
	var contentHeight;	
	
	var contentObjects = new Array();
	var originalslideSpeed = false;
	function slideContent(containerId)
	{
		var topPos = contentObjects[containerId]['objRef'].style.top.replace(/[^\-0-9]/g,'');
		topPos = topPos - contentObjects[containerId]['slideSpeed'];
		if(topPos/1 + contentObjects[containerId]['contentHeight']/1<0)topPos = contentObjects[containerId]['containerHeight'];
		contentObjects[containerId]['objRef'].style.top = topPos + 'px';
		setTimeout('slideContent("' + containerId + '")',slideTimeBetweenSteps);
		
	}
	
	function stopSliding()
	{
		var containerId = this.id;
		contentObjects[containerId]['slideSpeed'] = 0;	
	}
	
	function restartSliding()
	{
		var containerId = this.id;
		contentObjects[containerId]['slideSpeed'] = contentObjects[containerId]['originalSpeed'];
		
	}
	function initSlidingContent(containerId,slideSpeed)
	{
		scrollingContainer = document.getElementById(containerId);
		scrollingContent = scrollingContainer.getElementsByTagName('DIV')[0];
		
		scrollingContainer.style.position = 'relative';
		scrollingContainer.style.overflow = 'hidden';
		scrollingContent.style.position = 'relative';
		
		scrollingContainer.onmouseover = stopSliding;
		scrollingContainer.onmouseout = restartSliding;
		
		originalslideSpeed = slideSpeed;
		
		scrollingContent.style.top = '0px';
		
		contentObjects[containerId] = new Array();
		contentObjects[containerId]['objRef'] = scrollingContent;
		contentObjects[containerId]['contentHeight'] = scrollingContent.offsetHeight;
		contentObjects[containerId]['containerHeight'] = scrollingContainer.clientHeight;
		contentObjects[containerId]['slideSpeed'] = slideSpeed;
		contentObjects[containerId]['originalSpeed'] = slideSpeed;
		
		slideContent(containerId);
		
	}
	
                 
