// JavaScript Document

function amp_img(pic,w,h) {
    var win;
    var parms;

    w=w+20;
    h=h+30;

    parms="width="+w+",height="+h+",screenX=50,screenY=50,resizeable=yes,locationbar=no,status=no,menubar=no";
    win=window.open( pic, "imagePopup", parms);
}