// JavaScript Document

function validation()
{

 word = document.getElementById('q').value;
 cat = document.getElementById('newload_categories_id').value;
 author = document.getElementById('newload_author_id').value;
 
if ( word == 'Template No. / Keywords' && cat == '' && author == '')
{
	alert('Please enter Template No. / Keywords to find templates');
	return false;
}

return true;

}