function rssControlBox(feedID){
	retVal = '';
	
	retVal += '<div id="rssBox_'+feedID+'" style="display: none;">';   //position: absolute; top: 0px; left: 10px; z-index: 10; width: 100px; height: 100px; border: 1px solid rgb(192,192,192); background-color: rgb(0,255,0);
	
	
	retVal += ' <div onclick="xmlSet(\'delete_rss\', \'del\', '+(feedID)+');rssFile['+(ctrs-1)+']=\'\';fillallrssdivs();return false;" title="Feed verwijderen" ';
	retVal += ' style="width: 16px; height: 16px; font-weight: bold; border: 1px solid rgb(192,192,192);">X</div>';
	
	
	retVal += ' <div onclick="document.getElementById(\'cBox_'+feedID+'\').style.display=\'none\';" title="Sluiten" ';
	retVal += ' style="width: 13px; height: 13px; font-weight: bold; border: 1px solid rgb(128,128,128); background-color: rgb(192,192,192); cursor: pointer;">X</div>';
	
//	retVal += ' <a onclick="xmlSet(\'delete_rss\', \'del\', '+(feedID)+');rssFile['+(ctrs-1)+']=\'\';fillallrssdivs();return false;" href="#" title="Feed verwijderen" style="color:rgb(255,192,192);">X</a>';
	retVal += ' ';
	retVal += '</div>';
	
	retVal += '<div ';
	retVal += 'style="position: absolute; display: block; float: right; z-index: 20; background-color: rgb(255,255,255); right: -1px; border: 1px solid rgb(255,255,255); width: 16px;" ';
	retVal += ' onmouseover="fillcBox('+feedID+');"';
	retVal += '>';
	
	retVal += '<div style="margin-left: 2px; display: inline; width: 16px; height: 16px; background-color: rgb(255,255,255); color: rgb(192,192,255); cursor: pointer;" ';
//	retVal += ' onmouseover="fillcBox('+feedID+');"';
//	retVal += ' onmouseout="document.getElementById(\'rssBox_'+feedID+'\').style.display=\'none\';"';
	retVal += '>?</div>';

	retVal += '</div>';
	
	return retVal;

}

function fillcBox(feedID){
	cBox = document.getElementById('cBox_'+feedID);
	cBox.style.position = 'absolute';
	cBox.style.left= '180px';
	cBox.style.zIndex = '12';
	cBox.style.display = 'block';
	//cBox.style.width = '100px';
	cBox.style.height = '40px';
	cBox.style.backgroundColor = 'rgb(255,255,255)';
	cBox.style.border = '1px solid rgb(192,192,192)';

//document.getElementById('cBoxi_'+feedID).innerHTML = document.getElementById('rssBox_'+feedID).innerHTML;

	cBox.innerHTML = document.getElementById('rssBox_'+feedID).innerHTML;
}

