function checkAGB()
{
	if(document.order.agb.checked == false)
	{
		alert("Bevor Sie die Bestellung abschicken können, müssen Sie zuerst die AGBs akzeptieren !");
		return false;
	}
}

function openAGB()
{
	var		oWindow = null;
	var		iWidth = 700;
	var		iHeight = 500;

	oWindow = window.open( "agb.php", "POPUP_AGB", "dependent=yes,locationbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no,screenX=0,screenY=0,height="+iHeight+",width="+iWidth); 
	if( top.window.opener)
		oWindow.opener = top.window.opener;
}

function openImage(produktID)
{
	var		oWindow = null;
	var		iWidth = 650;
	var		iHeight = 650;

	oWindow = window.open( "shop.image.php?produktID="+produktID, "POPUP_AGB", "dependent=yes,locationbar=no,menubar=no,scrollbars=no,resizable=yes,status=no,screenX=0,screenY=0,height="+iHeight+",width="+iWidth); 
	if( top.window.opener)
		oWindow.opener = top.window.opener;
}