function searchmain(main_lang) {
	location.href='/cgi-bin/dd/dd_display.pl?action=search&main_lang='+main_lang;
}

// Nannette Thacker http://www.shiningstar.net

function confirmSubmit()
{
var agree=confirm("Are you sure you wish to continue?");
if (agree)
	return true ;
else
	return false ;
}


function checkAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = true ;
}

function uncheckAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = false ;
}

