function lightsOn(id,lastChapter,lastPage) {
	var divId="readLatest"+id;
	var comicId=id;
	var lastChapter=lastChapter;
	var lastPage=lastPage;
	var id=document.getElementById(divId);
	id.innerHTML="<a href='" + comicId + '-' + lastChapter + '-' + lastPage + ".comic' class='comicReadLink' style='color:#c90000;'>Read Latest Update</a>";
}
function lightsOut(id,lastChapter,lastPage) {
	var divId="readLatest"+id;
	var comicId=id;
	var lastChapter=lastChapter;
	var lastPage=lastPage;
	var id=document.getElementById(divId);
	id.innerHTML="<a href='" + comicId + '-' + lastChapter + '-' + lastPage + ".comic' class='comicReadLink'>Read Latest Update</a>";
}

