What is this added function for at the bottom?
-
Can i know what is this added function for?
<script>function hefo_popup(url, width, height) {
var left = Math.round(screen.width/2-width/2); var top = 0;
if (screen.height > height) top = Math.round(screen.height/2-height/2);
window.open(url, “share”, “scrollbars=yes,resizable=yes,toolbar=no,location=yes,width=” + width + “,height=” + height + “,left=” + left + “,top=” + top);
return false;
- The topic ‘What is this added function for at the bottom?’ is closed to new replies.