/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function search(){
    
    if(document.getElementById('ArtistArtistname').value == 'Search Artist'){

        alert('Please enter artist name.');
        document.getElementById('ArtistArtistname').focus();
        return false;
    }
    
    return true;
}

