﻿        
        function ShowPrintPage(srcDoc)
        {
            document.open(srcDoc, "PrintPage", "toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=0, width=820, height=600, top=50, left=200");
        }
        
        function submitForm(objID)
        {
            if (event.keyCode == 13)
            {
                event.cancelBubble = true;
                event.returnValue = false;
                document.all[objID].click();
            }
        }

