function sh_sizes(id)
{
	if(document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = 'block';
	}
	else
	{
		document.getElementById(id).style.display = 'none';
	}
}

function openPopup(url,height,width)
{
	window.open(url, '_popup', 'height='+height+' ,width='+width+' ,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no');
}

function showAGB()
{
	window.open('agb_popup.php', '_popup', 'height=500 ,width=600 ,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no');
}

function jumpToCategorie(pg_id)
{
	if (pg_id == 0)
	{
		alert("rot gekennzeichnete Kategorie wählen");
		return false;
	}
}