
function ToggleDisplay(link, gruppe, name)
{
	var Display = document.getElementById('prod_popup').style.display;
	if (Display == 'none')
	{
		document.getElementById('prod_popup').style.height    = (document.body.scrollHeight) + 'px';
		document.getElementById("prod_popup").innerHTML = '<div id="prod_popup_content"><div onmouseover= "this.style.cursor = \'pointer\'" onclick="ToggleDisplay(); return false;" class="x-button"></div><span class="video_gruppe" style="margin-bottom:10px;">'+gruppe+'&nbsp;&nbsp;> >&nbsp;&nbsp;</span><span class="video_name">'+name+'</span><iframe class="vidfrm" marginwidth="0" marginheight="0" style="position: relative;" src="http://www.zideo.de/zideomediaplayer.php?zideo='+link+'" width="720" height="426" frameborder="0"></iframe></div>';
		var video_abstand_von_oben = 125;
		var yOffset = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
		document.getElementById('prod_popup_content').style.top = (yOffset+video_abstand_von_oben)+'px';
		document.getElementById('prod_popup').style.display = 'block';
	}
	else
	{
		document.getElementById('prod_popup').style.display = 'none';
		document.getElementById("prod_popup").innerHTML = '';
	}
}

// Popups
function popup(productid,breite,hoehe)
{
	PARA1 = breite;
	PARA2 = hoehe;
	PARA = "window.open('http://www.druckerzubehoer.de/shop/popup.phtml?productid="+productid+"', 'PopupWindow1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + PARA1 + ",height=" + PARA2 +"');";
	eval(PARA);
}

function klarna_check()
{
	var radio_klarna = document.getElementById('radio_klarna');
	var button_anschrift = document.getElementById('button_anschrift');
	var button_anschrift_grey = document.getElementById('button_anschrift_grey');
	if (radio_klarna)
	{
		if (button_anschrift) // Keine abweichende Anschrift gesetzt
		{
			radio_klarna.enabled = 'enabled';
			radio_klarna.title = '';
		}
		else
		{
			radio_klarna.disabled = 'disabled';
			radio_klarna.title = 'Diese Zahlungsart steht bei abweichender Lieferadresse leider nicht zur Verfügung!';
		}
		if (radio_klarna.checked)
		{
			if (button_anschrift) // Keine abweichende Anschrift gesetzt
			{
				button_anschrift.style.display = 'none';
				button_anschrift_grey.style.display = 'inline';
			}
			return true;
		}
		if (button_anschrift) // Grundzustand ohne abweichende Lieferanschrift
		{
			button_anschrift.style.display = 'inline';
			button_anschrift_grey.style.display = 'none';
		}
	}
	return true;
}


