function filter( type, search ) {

    if( type == 'all' ) {

        document.location = linkurl + "/Search/" + search;
    } else if( type == 'people' ) {

        document.location = linkurl + "/Search/" + search + "/People";
    } else if( type == 'bands' ) {

        document.location = linkurl + "/Search/" + search + "/Bands";
    } else if( type == 'posts' ) {

        document.location = linkurl + "/Search/" + search + "/Posts";
    } else if( type == 'blogs' ) {

        document.location = linkurl + "/Search/" + search + "/Blogs";
    } else if( type == 'classifieds' ) {

        document.location = linkurl + "/Search/" + search + "/Classifieds";
    }
}