﻿// JScript File
function popupImg(img, l, t, w, h, bloc, bscroll, bmbar, btbar, bresize) {
var windowprops = "location=" + bloc + ",scrollbars=" + bscroll + ",menubar=" + bmbar + ",toolbar=" + btbar + ",resizable=" + bresize + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;

var URL = "" + img;
window.name = '_main';
popup = window.open(URL,"MenuPopup",windowprops);
}