function decision(message, url)
{
	if (confirm(message)) location.href = url;
};

function openWindow()
{
	window.open ("", "photo", 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1, width=700, height=500, top=150, left=20');
};

function ConfBox (msg, adress) { if (confirm (msg)) location.href= adress; };

function Uncheck (prod) {
	for (i=1; i<=5; i++) { document.getElementById(''+prod+'_'+i+'').checked= false; }
};
