$(document).ready(function() {
    $('#searchForm').find(':input').each(function() {
        switch(this.type) {    
            case 'text':
	        $(this).val('');
        }
    });
});
function loading(blockid,i){
    var img = '<img src="'+baseUrl+'/public/images/loading.gif" alt="loading...">'
    if(i){
        //$('#'+blockid).html(img);
    } else {
        //$('#'+blockid).html('');
    }
}

function downloadDoc(id){
        var url = baseUrl+'/search/downloadadddoc/id/'+id;
        document.downloadForm.action=url;
        document.downloadForm.target = "downloadFrame"; 
        document.downloadForm.submit();
        document.downloadForm.action= '' ;
        document.downloadForm.target = ''; 
    }

