//*****************************************************
function show_newsletter(path)
{
	select_obj = document.getElementById ? document.getElementById('snb') : eval('snb');
	if(select_obj){
		var url = select_obj[select_obj.selectedIndex].value;
		if(url.search(/\.s?html?$/)!= -1) location.href = 'http://www.namasteindia.org/' + path + url;
	}
}
//*****************************************************
function FormCheck()
{
	var s1check = false;

	for (counter = 0; counter < hmzjform.s1.length; counter++)
	{
		if (hmzjform.s1[counter].checked)
		{
			s1check = true; 
		}
	}

	if ((!s1check) || document.hmzjform.naam.value == "" || document.hmzjform.adres.value == "" || document.hmzjform.pcpl.value == "" || document.hmzjform.tel.value == "" || document.hmzjform.email.value == "" || document.hmzjform.reknr.value == "")
	{
		alert ("Alle velden invullen, aub.");
		return false;
	}

	else
	{
		return true;
	}
}

function FormCheck2()
{
	if (document.con.naam.value == "" || document.con.email.value == "" || document.con.bericht.value == "")
	{
		alert ("Alle velden invullen, aub.");
		return false;
	}

	else
	{
		return true;
	}
}


