/**
 * Webshop Javascript Control
 * --------------------------------------------------
 * @author Jonathan van 't Ende - (jonathan@impres.nl)
 */

function updateWinkelwagen()
{
	document.forms['winkelwagen'].action = '?page=webshop.ww.update';
	document.forms['winkelwagen'].submit();
}

function orderWinkelwagen()
{
	document.forms['winkelwagen'].action = 'webshop/bestellen.html';
	document.forms['winkelwagen'].submit();
}

function deleteWinkelwagen()
{
	return(confirm('Hiermee verwijderd u dit product uit de winkelwagen\nWeet u het zeker?'));
}

function changeFoto(largeFoto, xLargeFoto)
{
	document.getElementById('largepic').src = largeFoto;
	document.getElementById('largepic_link').href = xLargeFoto;
	return false;
}
