﻿function __popupLoaded(sender, eventArgs) { sender.center(); }
function openPopup(source, title, width, height, modal) { if (typeof modal == 'undefined') { modal = true; } if (source) { if (title) { var xWin = window.radopen(source, title); if (modal == true) { xWin.set_modal(true) }; if (width) { if (height) { xWin.setSize(width, height); } else { xWin.set_width(width); } } } else { var xWin = window.radopen(source, ''); if (modal == true) { xWin.set_modal(true) } } } }