// JavaScript Document


function textboxEmpty(txtbox) {
	
	if(txtbox.value == "")
	{
		alert("Please enter a search keyword!");    
		return false;
    }
    return true;
	
}
