
function CheckOrderForm()
{
	if (!(document.orderform.confirm_order.checked))
	{
		alert('Sie haben Ihre Bestellung noch nicht bestätigt!');
		return false;
	}
	if (document.orderform.confirm_agb[1].checked || !document.orderform.confirm_agb[0].checked)
	{
		alert('Sie haben unsere Allgemeinen Geschäftsbedingungen noch nicht akzeptiert!');
		return false;
	}
	return true;
}

function OpenPreview(img,w,h,t)
{
	var popup;
	if ((popup = window.open(
		'preview.php?img='+img+'&w='+String(w)+'&h='+String(h)+'&t='+t,
		'prevpop',
		'width='+String(w+30)+',height='+String(h+50)+',left=300,top=60,menubar=no,status=no,toolbar=no')))
	{
		popup.focus();
		return false;
	}
	return true;
}



	function Autoselect( selectName, actionParameterAdd)
	{
		//document.forms[formName].action+= actionParameterAdd;
		//document.forms[formName].submit();

		//alert( formName.form.subcatsel.value);
		//alert( selectName.options[selectName.options.selectedIndex].value);
		selectName.form.action+= actionParameterAdd;
		selectName.form.submit();
	}
	


