// De-selects all the items as selected for the submit button.  
function clearListRelated() {
sourceList = window.document.forms[0]._ctl6_lstRelated;
for(var i = 0; i < sourceList.options.length; i++)
{
	sourceList.options[i].selected = false;
}
//return true;
}

function clearListKeyword() {
sourceList = window.document.forms[0]._ctl6_lstKeywords;
for(var i = 0; i < sourceList.options.length; i++)
{
	sourceList.options[i].selected = false;
}
//return true;
}

function alertme() {
alert('This is it.');
}