// (c) mass:werk 2005; www.masswerk.at


function setTab(tab, v) {
	var bg=(v)? '#FCF3C4' : '#ffffff';
	var tab_id='tab_'+tab;
	var obj;
	if (document.getElementById) obj=document.getElementById(tab_id)
	else if (document.all) obj=document.all[tab_id];
	if ((obj) && (obj.style)) {
		obj.style.backgroundColor=bg;
	}
}

function gotoTab(tab) {
	var n='link_'+tab;
	if ((document.links) && (document.links[n]) && (document.links[n].href)) {
		self.location.href=document.links[n].href;
		return false
	}
	else if (document.getElementById) {
		var obj=document.getElementById(n);
		if ((obj) && (typeof obj.href != 'undefined') && (document.links[n])) {
			self.location.href=obj.href
			// document.links[n].href;
			return false
		}
	};
	return true
}


// tips conf

var tips= {
	kostenlos1:'Kostenlos f&uuml;r alle &Ouml;sterreichischen Bundesschulen.',
	kostenlos2:'Kostenlos',
	kostenlos3:'Kostenlos f&uuml;r alle &Ouml;sterreichischen Bundesschulen.',
	filminfo:'Detailinformationen zu diesem Artikel ansehen.'
}

var tipMaxWidth= 220;
var tipXOffset= -6;
var tipYOffset= 12;
var tipHead='<table border="0" cellspacing="0" cellpadding="0" width="'+tipMaxWidth+'"><tr><td height="18" colspan="3" background="../images/tiptop.gif"><img src="../images/space.gif" width="1" height="18"></td></tr><td width="1" bgcolor="#769398"><img src="../images/space.gif" width="1" height="1"></td><td bgcolor="#FCF3C4"><table border="0" cellspacing="0" cellpadding="6"><tr><td class="tip">';
var tipTrail='</td></tr></table></td><td width="1" bgcolor="#769398"><img src="../images/space.gif" width="1" height="1"></td></tr><tr><td height="1" width="1"></td><td height="1" bgcolor="#769398"><img src="../images/space.gif" width="1" height="1"></td><td height="1" width="1"></td></tr></table>';

// preload image for tips
var tipimage;
if (document.images) {
	tipimage=new Image();
	tipimage.src='../images/tiptop.gif';
}

function chartHint(obj,verb,noun) {
	var n=verb+noun;
	if (!tips[n]) tips[n]='Zum Warenkorb hinzug&uuml;gen:<br>'+noun+' Kopie '+verb+'.';
	window.status='Zum Warenkorb hinzugügen: '+noun+' Kopie '+verb;
	tipShow(obj,n)
}

// eof
