function handleCheckBox(checkbox)
{
	if (checkbox.checked)
		checkbox.value = 1;
	else
		checkbox.value = 0;
}

function popUp(URL) 
{
	width = 680;
	height = 600;
	left = ((screen.width - width) / 2);
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=0,width=' + width + ',height=' + height + ',left =' + left + ',top = 10');");
}

function verifyAndSumit(actionName)
{
	var msg = 'Spodnja polja so obvezna:\n\n';
	var errors = false;
	if (document.forms[0].kontakt.value == '')
	{
		msg += 'Kontakt\n';
		errors = true;
	}
	if ((document.forms[0].gsm.value == '') && (document.forms[0].telefon.value == ''))
	{
		msg += 'Gsm ali Telefon\n';
		errors = true;
	}
	if (document.forms[0].email.value == '')
	{
		msg += 'E-mail';
		errors = true;
	}
	
	
	if (errors)
	{
		alert(msg);
	}
	else
	{
		document.forms[0].actionName.value = actionName;
		document.forms[0].submit();
	}
}