// Rollover für Webpart-Links
function high(LinkObject)	{
	LinkObject.style.background='#3458CD';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#3458CD';
}

function low(LinkObject)	{
	LinkObject.style.background='#0e81e6';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#5269ff';
}


// Rollover für Portal-Navigation
function high1(LinkObject)	{
	LinkObject.style.background='#0000CC';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#0000CC';
}

function low1(LinkObject)	{
	LinkObject.style.background='#0e37b4';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='#0e37b4';
}

// Rollover für Haupt-Navigation auf Modulseiten
function high2(LinkObject)	{
	LinkObject.style.background='rgb(122,187,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low2(LinkObject)	{
	LinkObject.style.background='rgb(227,224,221)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(227,224,221)';
}

// Rollover für Product Related Links auf Modulseiten
function high3(LinkObject)	{
	LinkObject.style.background='rgb(122,187,255)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}

function low3(LinkObject)	{
	LinkObject.style.background='rgb(245,244,243)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(245,244,243)';
}

function GoForIt(wohin)	{
	if(wohin == "nolink")	{
  		return;
	}
	else	{
	
		window.location.href = wohin;
	}
}

function change2(url1,url2) {
	parent.treeframe.location.href= url1;
	parent.basefrm.location.href= url2;
}

function PrintWindow() {

	page = window.location.href;
	window.onerror = null;
	IE=(navigator.appName=='Microsoft Internet Explorer');
	NS=(navigator.appName=='Netscape');

   	var _params = 'scrollbars=no,status=no,toolbar=no,resizable=no,location=no';
     _params += ',width=500,height='+(screen.availHeight-80);
     if (IE) _params += ',top=0,left=40';
     else if (NS) _params += ',screenX=0,screenY=80';
     var fs = window.open(page, 'Print', _params); 
    if (fs!=null) {
	if (fs.opener==null) window.opener=self;
	fs.focus()
	}
}

function Print() {
	if (parent.frames.length == 0) window.print();
}

function RecommendWindow() {

	page = 'http://www.act.at/german/site/recommend.html';
	window.onerror = null;
	IE=(navigator.appName=='Microsoft Internet Explorer');
	NS=(navigator.appName=='Netscape');

   	var _params = 'scrollbars=no,status=no,toolbar=no,resizable=no,location=no';
     _params += ',width=500,height=450';
     if (IE) _params += ',top=0,left=40';
     else if (NS) _params += ',screenX=0,screenY=80';
     var fs = window.open(page, 'Print', _params); 
    if (fs!=null) {
	if (fs.opener==null) window.opener=self;
	fs.focus()
	}
}

function goHome() {
	top.location.href='../../index.html';
}

function goHome2() {
	top.location.href='../index.html';
}