<!--

/**
*	Naar een bepaalde pagina gaan bij onChange() van dropdown
*/
function gotoCategorie( cat_id )
{
	document.location.href = 'browse.php?cat=' + cat_id;
}

/**
*	Exclusiviteit aan foto toekennen bij onChange
*/
function setExclusive( id )
{
	var mndId = "mnd" + id;
	var mnd = document.getElementById( mndId ).value;
	//alert( "Id: "+id+"\nMaand: "+mnd );

	var uri = "shop.php?photo_id=" + id + "&excl=" + mnd;
	document.location.href = uri;
}

/**
*	Kwaliteit instellen van de foto onChange
*/
function setQuality( id )
{
	var qltyId = "quality" + id;
	var qlty = document.getElementById( qltyId ).value;
	//alert( "Id: "+id+"\nMaand: "+mnd );

	var uri = "shop.php?photo_id=" + id + "&qlty=" + qlty;
	document.location.href = uri;
}
//-->
