function hideElement(o) {
	if(typeof o == 'string') {
		o = document.getElementById(o);
	}
    if(o != null) {
        o.style.display = "none";
    }
}
function showElement(o) {
	if(typeof o == 'string') {
		o = document.getElementById(o);
	}
    if(o != null) {
        o.style.display = "block";
    }
}
function sendDownloadReq(cId) {
	var data = {
                op: 'lgdl',
                type: 'element',
                elementId: 'download_link_'+cId,
                eid: 'download_link_'+cId,
                cid: cId
                };
	sendRequest(data);
}