function isbnShow() { var enterIsbn = document.getElementById('enterIsbn'); if(enterIsbn.value=='Enter ISBN')enterIsbn.value=''; document.getElementById('enterAll').value='Enter author, title or keyword'; document.getElementById('enterIsbn').className='activeIsbn'; document.getElementById('enterAll').className='inactiveIsbn'; } function allShow() { var enterAll = document.getElementById('enterAll'); if(enterAll.value=='Enter author, title or keyword')enterAll.value=''; document.getElementById('enterIsbn').value='Enter ISBN'; document.getElementById('enterAll').className='activeIsbn'; document.getElementById('enterIsbn').className='inactiveIsbn'; }