$(document).ready(function () { $(".helpBox").hover( function () { $(this).children(".helpText").show(); }, function () { $(this).children(".helpText").hide(); } ); }); function infoBox(page) { var width = 1100; var height = 650; var left = (screen.width - width) / 2; var top = (screen.height - height) / 4; var r = Math.random(); window.open("/easy/help/" + page, "Help"); //window.open("/adseasy/" + page, r, "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",toolbar=0,menubar=0,location=1,status=1,scrollbars=1,resizable=1"); return false; }