

function showPopup(popupURL, popupDesc, iWidth, iHeight)
{
    popupWin = window.open(popupURL, 'popup', 'width=' + iWidth + ',height=' + iHeight+',scrollbars=yes');
    popupWin.focus();
}

function reloadParent() {
    self.opener.location.reload(true); 
    window.close();
}

function submitForm(form) {
    form.submit();
}
