﻿// JScript File
function ShowProfile()
{
    var ppwin = window.open("", "AGCProfile", "width=400,height=300,scrollbars=1", false);
    ppwin.document.write("<div style='font-weight: bold;color: #cc0033;font-family: Verdana, Arial;font-size:11px;'>" + "Profile:" + "</div><br/>");
    ppwin.document.write("<div style='font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;'>" + document.getElementById("hdProf").value + "</div>");
}

