﻿// Common Page Functions
function C_popup(pURL, pName, pHeight, pWidth, pScroll)
{
    NewWindow = window.open
    (
        pURL,
        pName,
        "toolbar=no,scrollbars=" + pScroll + ",height=" + pHeight + ",width=" + pWidth + ",directories=no,status=no,resizable=no,menubar=no"
    );
}

