function lunchboOpen(luncID) {
document.getElementById('lunc_' + luncID).style.display = "block";
document.getElementById('clas_' + luncID).innerHTML="<a href=\"javascript:lunchboClose('" + luncID + "');\">Close " + "</a>";
}
function lunchboClose(luncID) {
document.getElementById('lunc_' + luncID).style.display = "none";
document.getElementById('clas_' + luncID).innerHTML="<a href=\"javascript:lunchboOpen('" + luncID + "');\">Read " + "Editorial</a>";
}