function popup(pUrl, pWidth, pHeight) {
var offsetX = 0;
var offsetY = 0;
offsetX = (screen.width - pWidth) / 2;
offsetY = (screen.height - pHeight) / 2;
var features = "width=" + pWidth +
",height=" + pHeight +
",screenX=" + offsetX +
",screenY=" + offsetY +
",left=" + offsetX +
",top=" + offsetY +
",scrollbars=1" +
",dependent=0" +
",directories=0" +
",fullscreen=0" +
",location=0" +
",menubar=1" +
",resizable=1" +
",status=0" +
",toolbar=0";
var popup = window.open(pUrl, 'Info', features);
popup.focus(); }
function extlink(pUrl, pWidth, pHeight) {
var features = "width=" + pWidth +
",height=" + pHeight +
",screenX=0" +
",screenY=0" +
",left=0" +
",top=0" +
",scrollbars=1" +
",dependent=0" +
",directories=0" +
",fullscreen=0" +
",location=0" +
",menubar=1" +
",resizable=1" +
",status=0" +
",toolbar=1";
var extlink = window.open(pUrl, 'Link', features);
extlink.focus(); }
function zoom(pUrl, pWidth, pHeight) {
var offsetX = 0;
var offsetY = 0;
offsetX = (screen.width - pWidth) / 2;
offsetY = (screen.height - pHeight) / 2;
var features = "width=" + pWidth +
",height=" + pHeight +
",screenX=" + offsetX +
",screenY=" + offsetY +
",left=" + offsetX +
",top=" + offsetY +
",scrollbars=0" +
",dependent=0" +
",directories=0" +
",fullscreen=0" +
",location=0" +
",menubar=0" +
",resizable=0" +
",status=0" +
",toolbar=0";
var zoom = window.open(pUrl, 'Zoom', features);
zoom.focus(); }
