function popup(popupUrl, popupWindowName, imageWidth, imageHeight) {
   imageAttributes = 'width=' + imageWidth + ',height=' + imageHeight;
   win=window.open(popupUrl,popupWindowName,imageAttributes);
   win.document.bgColor='#FF9999';
}