﻿
function submitSelf(form) {
        form.source.value = 'self';
        form.submit();
    }

    function popupWin(url) {
        var feature = "toolbar=0,location=no,directories=yes,ststus=yes,menubar=yes,scrollbars=yes,resizable=yes";
        var newwin = window.open(url, "popupWin", feature)
        newwin.focus()
    }

    function doPrint(hidDiv) {
        var e = document.getElementById(hidDiv);
        e.style.display = "none";
        browserversion = parseInt(navigator.appVersion)
        if (browserversion >= 4) window.print()
        e.style.display = "";
    }    
