function $(id) { return document.getElementById(id); } function showCode(what) { var max_width = 200; var max_height = 200; var ratio; var img = what.getElementsByTagName('img')[0]; var codeBox = $('codeBox'); codeBox.style.display = 'block'; var codeEmo = $('codeEmo'); var codeDirect = $('codeDirect'); var codeBB = $('codeBB'); var codeHTML = $('codeHTML'); if (codeEmo.src && codeEmo.src == img.src) { codeEmo.src = ''; hideCode(); return false; } codeEmo.src = img.src; codeEmo.width = img.width; codeEmo.height = img.height; codeEmo.title = 'Emo.HaLinh.Vn'; if (codeEmo.width > max_width) { ratio = max_width/codeEmo.width; codeEmo.width = Math.round(codeEmo.width * ratio); codeEmo.height = Math.round(codeEmo.height * ratio); } if (codeEmo.height > max_height) { ratio = max_height/codeEmo.height; codeEmo.width = Math.round(codeEmo.width * ratio); codeEmo.height = Math.round(codeEmo.height * ratio); } codeDirect.value = img.src; codeBB.value = '[url=http://emo.halinh.vn][img]'+img.src+'[/img][/url]'; codeHTML.value = 'http://emo.halinh.vn'; return false; } function hideCode() { var codeBox = $('codeBox'); codeBox.style.display = 'none'; return false; }