function pop750(url) { scrolling = 'yes'; // Scrolling Yes/No/Auto resize = 'yes'; // Scrolling Yes/No pagename = 'MidacHub'; // popup name popht = 500; // popup height popwth = 750; // popup width //THATS ALL scrleft = (screen.width / 2) - (popwth /2); //centres horizontal scrtop = 40; //centres vertical popit=window.open(url,pagename,'top=' + scrtop + ',left=' + scrleft + ',height=' + popht + ',width=' + popwth + ',scrollbars=' + scrolling + ',resizable=' + resize + ',status=no,menubar=no,toolbar=yes,location=no'); popit.focus() }