function popWin(inURL, inWidth, inHeight) {
 window.open(inURL,'','toolbar=yes,scrollbars=yes,location=no,width=' + inWidth + ',height=' + inHeight + ',noresize=yes');
}
function refresh() {
 location.reload();
}
function popWinFull(inURL, inWidth, inHeight) {
 window.open(inURL,'','toolbar=yes,scrollbars=yes,location=no,width=' + inWidth + ',height=' + inHeight + ',resizable=yes,status=yes,fullscreen=yes');
}