﻿function Search(prefixPath) {
    var txt = document.getElementById('txtSearch');

    if (txt.value == '')
        alert('Please enter a search term');
    else
        window.location = prefixPath + 'search-' + txt.value + '/';
}