/////////////////////////////////////////////////////////////////////////////
// Function : ComSearchBoxInclude
// Comments : Simply clear the search box contents when clicked for the first time
/////////////////////////////////////////////////////////////////////////////

function searchBoxClear( searchText )
{ 
    var searchBox = document.getElementById( 'searchBox' );
    if( searchBox.value == searchText )
        searchBox.value = '';
}
