function verifySrch()
{
	var msg = '';
	var error = 0;
	
	if (document.SearchFRM.Search.value == "")
	{
		msg = 'Please insert your search keywords';
		error = error + 1;
		document.SearchFRM.Search.focus();
	}
	
	if (error > 0)
	{
		alert(msg)
		return false;
	}
	else
		document.SearchFRM.submit();	
}

function verifyCmmnt(theForm)
{
	var msg = "";
	var error = 0;
	
	if (theForm.Comment.value == "")
	{
		msg = "Please insert your comment";
		error = error + 1;
		theForm.Comment.focus();
	}
	else if (theForm.Cid.value == "")
	{
		msg = "Please ensure you have logged in";
		error = error + 1;
		theForm.Cid.focus();
	}	
	
	if (error > 0)
	{
		alert(msg);	
		return (false);					
	}
	else
		return (true);
}	

function Start(page) 
{
	OpenWin = this.open(page, "RichTV", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,statusbar=no,height=250,width=335");
	}