Fixing pop up translate blurry text.
/**
* -------------------
* Blurry text fixing
* -------------------
*/
function fixBlur(divID) {
var elem = document.getElementById(divID);
elem.style.height = (Math.ceil(elem.offsetHeight / 2) * 2) + "px";
elem.style.width = (Math.ceil(elem.offsetWidth / 2) * 2) + "px";
}