function enlarge(pic,w,h)
{
padding = 20;
w = w + padding;
h = h + padding;
str = "toolbar=0,menubar=0,resizeable=0,status=0,location=0,width=" + w + ",height=" +h;
enlargewindow=window.open("","enlarge",str);
enlargewindow.document.open();
enlargewindow.window.focus();
source = "<html><head><title>Enlarged image - Click to close.<\/title><\/head><body style='margin:0px'><table height=100% width=100%><tr><td align=center><img src=" + pic + " alt='IMAGE LOADING...' onmousedown=window.close()><\/table>"
enlargewindow.document.write(source);
}