function Help(strParam, iWidth, iHeight)
{
	window.open(strParam,'helpwin','resizable=yes,scrollbars=yes,height=' + iHeight + ',width=' + iWidth).focus();			
}

function Info(strParam, iWidth, iHeight)
{
	window.open(strParam,'infowin','resizable=yes,scrollbars=yes,height=' + iHeight + ',width=' + iWidth).focus();			
}

function printcv(ref)
{
    window.open('printcv.aspx?ref=' + ref, 'printcv','menubar=1,resizable=1,scrollbars=1,width=700,height=600').focus(); 
}

function submitonce()
{
    if(typeof(Page_ValidationActive) != 'undefined')
    {
        if(Page_ValidationActive)
        {
            if(Page_ClientValidate())
            {
                document.getElementById(window.event.srcElement.id).disabled = true;
                __doPostBack(window.event.srcElement.id, '');
            }
        }
    }
}
