goOut = 1;
lastprod = '';

function showToolTip(Produkt) {
	lastprod = Produkt;
	goOut = 0;
	textid = Produkt.replace("area_","prodkat_");
	textcontent = document.getElementById(textid).innerHTML;
	tipobject = '<div style="width: 450px; overflow: hidden; padding: 10px;" class="starttip">';
	tipobject += textcontent;
	tipobject += '<span class="clearer"></span>';
	tipobject += '</div>';
	Tip(tipobject, FOLLOWMOUSE, false);
}

function showToolTipName(Produkt) {
	if (goOut == 0) return false;
	lastprod = Produkt;
	textid = Produkt.replace("area_","prodkatname_");
	textcontent = document.getElementById(textid).innerHTML;
	tipobject = '<div style="width: 220px; overflow: hidden; padding: 10px;" class="starttip">';
	tipobject += textcontent;
	tipobject += '</div>';
	Tip(tipobject);
}

function giveWay() {
	document.location.href = document.getElementById(lastprod).getAttribute('tiphref');
}

function isOut() {
	if (goOut == 1) {
		UnTip();	
	}
}

function printMeTip() {
printwin = window.open('about:blank', 'himmel', 'width=600,height=400,top=100,left=400');
printwin.document.write('<html><body>');
printwin.document.write('<link rel="stylesheet" type="text/css" href="/css/styles.css">');
printwin.document.write('<style>.tip_nav { display: none }</style>');
printwin.document.write(this.textcontent);
printwin.document.write('<script>window.print();<\/script>');
printwin.document.write('</body></html>');
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ 
	printwin.window.location.reload();
}
// printwin.print();
// printwin.close();
}