// JavaScript Document
function Kalender(veld, lang)
	{
	window.open('_kalender.php?veld=' + veld + '&lang=' + lang, 'Kalender', 'width=200, height=300, scrollbars=yes, menubar=no, directories=no, resizable=no');
	}

function select_datum(datum, veld)
	{
	opener.document.frm_deltatemp.elements[veld].value = datum;
	
	window.close();
	return true;
	}

function ToonFoto(active_product_id, aantal)
	{
	var i;
	for (i=1; i<=aantal; i++)
		{
		$("#product-" + i).removeClass();
		$("#product-" + i).addClass("hide");
		}
	
	$("#product-" + active_product_id).removeClass();
	$("#product-" + active_product_id).addClass("show");
	}
