<!--

startList = function()
{
}	
window.onload=startList;


function ManageHover(rootNode)
{
if (document.all&&document.getElementById)
	{	
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{  
				if (node.className != "")
				{
					node.onmouseover=function()
					{
							node.className = "over";	
					}
					node.onmouseout=function()
					{
						this.className=this.className.replace("over", "hoverClass");
					}
				}
			}
		}
	}

}

var aktiv    = -1;
var Netscape = 0;

Version  = parseInt(navigator.appVersion);

if (navigator.appName=="Netscape" && Version > 2) {
  Netscape = 1;
} else if (navigator.appName=="Microsoft Internet Explorer" && Version > 3) {
  Netscape = 1;
} else Netscape = 0;

window.onresize = SetContentHeight;

function SetContentHeight()
{
    var x,y;
    if (self.innerHeight) // all except Explorer
    {
	    x = self.innerWidth;
	    y = self.innerHeight - 176;
    }
    else if (document.documentElement && document.documentElement.clientHeight)
	    // Explorer 6 Strict Mode
    {
	    x = document.documentElement.clientWidth;
	    y = document.documentElement.clientHeight - 188;
    }
    else if (document.body) // other Explorers
    {
	    x = document.body.clientWidth;
	    y = document.body.clientHeight - 188
    }
    if (y != null && y > 0)
    {
        if (document.getElementById("mainTableForContent") != null) document.getElementById("mainTableForContent").style.height=y.toString() + "px";
    }
}



function doNothing()
{
	var x = 2;
}

function getWindowInnerSizeX()
{
	var x = -1;
	if (self.innerHeight) // all except Explorer
	{
		x = self.innerWidth;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	{
		x = document.documentElement.clientWidth;
	}
	else if (document.body) // other Explorers
	{
		x = document.body.clientWidth;
	}
	return x;
}

function getWindowInnerSizeY()
{
	var y = -1;
	if (self.innerHeight) // all except Explorer
	{
		y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	{
		y = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		y = document.body.clientHeight;
	}
	return y;
}

function createUtmLinks(checkFor, currentPageTracker)
{
    try
    {
        if (checkFor != null && checkFor.length > 0 && currentPageTracker != null && (typeof currentPageTracker._link == 'function'))
        {
            for (var i = 0; i < document.links.length; i++)
            {
                if (document.links[i] != null && document.links[i].href != null && document.links[i].href.indexOf(checkFor) > -1)
                {
                    document.links[i].onclick = function(){try{currentPageTracker._link(this.href);return false;}catch(err){return true;}};
                }
            }
        }
     }
     catch (err){}
}

function createUtmASLinks(currentPageTracker)
{
    domains = new Array("aquasoft.de", "www.aquasoft.de", "diashow.de", "www.diashow.de","aquasoft.net", "www.aquasoft.net", "dvd-photoshow.com", "www.dvd-photoshow.com", "blog.aquasoft.de", "blog.aquasoft.net", "forum.aquasoft.de", "forums.aquasoft.net", "wiki.aquasoft.de", "faq.aquasoft.de");
    try
    {
        if (currentPageTracker != null && (typeof currentPageTracker._link == 'function'))
        {
            for (var i = 0; i < document.links.length; i++)
            {
                for (var domainCounter = 0; domainCounter < domains.length; domainCounter++)
                {
                    if (document.links[i] != null && document.links[i].href != null && (document.links[i].href.indexOf("http://" + domains[domainCounter]) == 0 || document.links[i].href.indexOf("https://" + domains[domainCounter]) == 0) && window.location != null && window.location.host != null && domains[domainCounter].toUpperCase() != window.location.host.toUpperCase())
                    {
                        document.links[i].onclick = function(){try{currentPageTracker._link(this.href);return false;}catch(err){return true;}};
                    }
                }
            }
        }
    }
    catch(err2)
    {
    }
}

function getUrlParameter(name)
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}
-->
