function getCookieData(labelName){
  var labelLen=labelName.length;
  var cookieData=document.cookie;
  var cLen=cookieData.length;
  var i=0;
  var cEnd;
  var result="";
  while(i<cLen){
    var j=i+labelLen;
    if(cookieData.substring(i,j)==labelName){
      cEnd=cookieData.indexOf(";",j)
      if (cEnd==-1){
         cEnd=cookieData.length
      }
	  if(j != cEnd){
	  // If j = cEnd then we will encountered a reverse substring
	  // and return a ";" when the cookie is nulled out
	  result = (cookieData.substring(j+1, cEnd));
	  }
      return result;
    }
    i++
  }
  return ""
}

function addDecimals(tempStr){
  if(tempStr.length >= 10){
	tempStr = tempStr.substring(0,3) + "." + tempStr.substring(3,6) + "." + tempStr.substring(6, 10);
  }
  return tempStr;	
}

  if(getCookieData("CPRUserName")!="" && getCookieData("CPRUserName")!="null"){
    document.write('<table width="150" cellspacing="0" cellpadding="0" border="0">');
    document.write('<tr>');
    document.write('<td rowspan="2" colspan="2" valign="top" bgcolor="#EEF5FA"><img src="/cpr/images/chip_lcurv.gif" width="12" height="9" alt="" border="0"></td>');
    document.write('<td bgcolor="#6FB1D9"><img src="/images/spacer.gif" height="1" width="128" border="0"></td>');
    document.write('<td rowspan="2" colspan="2" align="right" valign="top" bgcolor="#EEF5FA"><img src="/cpr/images/chip_rcurv.gif" width="10" height="9" alt="" border="0"></td>');
    document.write('</tr>');
    document.write('<tr>');
    document.write('<td height="8" bgcolor="#EEF5FA"><img src="/images/spacer.gif" height="8" width="1" border="0"></td>');
    document.write('</tr>');
    document.write('<tr>');
    document.write('<td bgcolor="#6FB1D9" width="1" rowspan="1"><img src="/images/spacer.gif" height="1" width="1" border="0"></td>');
    document.write('<td width="12" bgcolor="#EEF5FA"><img src="/images/spacer.gif" height="1" width="11" border="0"></td>');
    document.write('<td>');
    document.write('<table width="128" cellpadding="0" cellspacing="0" border="0">');
    document.write('<tr bgcolor="#EEF5FA">');
    document.write('<td colspan="2">');
    document.write('<p class="small">'+getCookieData("CPRUserName")+'<br>');

    if(getCookieData("CPRAccountNum")!="" && getCookieData("CPRAccountNum")!="null"){
	  var tempObj=getCookieData("CPRAccountNum");
      tempObj=addDecimals(tempObj);  
      document.write('&gt; '+tempObj+'</p>');	    
      document.write('</td>');
      document.write('</tr>');
      document.write('</table>');
      document.write('</td>');
      document.write('<td bgcolor="#EEF5FA" width="9"><img src="/images/spacer.gif" height="1" width="9" border="0"></td>');
      document.write('<td bgcolor="#6FB1D9" width="1" rowspan="1"><img src="/images/spacer.gif" height="1" width="1" border="0"></td>');
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td align="left" valign="bottom" colspan="2" rowspan="2" bgcolor="#EEF5FA"><img src="/cpr/images/chip_blcurv.gif" width="12" height="5" alt="" border="0"></td>');
      document.write('<td bgcolor="#EEF5FA"><img src="/images/spacer.gif" height="4" width="1" border="0"></td>');
      document.write('<td align="right" valign="bottom" colspan="2" rowspan="2" bgcolor="#EEF5FA"><img src="/cpr/images/chip_brcurv.gif" width="10" height="5" alt="" border="0"></td>');
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td bgcolor="#6FB1D9"><img width="128" height="1" border="0" src="/images/spacer.gif"></td>');            
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td colspan="5"><a href="'+getCookieData("CPRLogoffUri")+'"><img src="/cpr/images/chip_logout.gif" width="150" height="17" border="0"></a></td>');            
      document.write('</tr>');
      document.write('</table>');

    }else{     
      document.write('</td>');
      document.write('</tr>');
      document.write('</table>');
      document.write('</td>');
      document.write('<td bgcolor="#EEF5FA" width="9"><img src="/images/spacer.gif" height="1" width="9" border="0"></td>');
      document.write('<td bgcolor="#6FB1D9" width="1" rowspan="1"><img src="/images/spacer.gif" height="1" width="1" border="0"></td>');
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td align="left" valign="bottom" colspan="2" rowspan="2" bgcolor="#EEF5FA"><img src="/cpr/images/chip_blcurv.gif" width="12" height="5" alt="" border="0"></td>');
      document.write('<td bgcolor="#EEF5FA"><img src="/images/spacer.gif" height="4" width="1" border="0"></td>');
      document.write('<td align="right" valign="bottom" colspan="2" rowspan="2" bgcolor="#EEF5FA"><img src="/cpr/images/chip_brcurv.gif" width="10" height="5" alt="" border="0"></td>');
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td bgcolor="#6FB1D9"><img width="128" height="1" border="0" src="/images/spacer.gif"></td>');            
      document.write('</tr>');
      document.write('<tr>');
      document.write('<td colspan="5"><a href="'+getCookieData("CPRLogoffUri")+'"><img src="/cpr/images/chip_logout.gif" width="150" height="17" border="0"></a></td>');            
      document.write('</tr>');
      document.write('</table>');
    }
  }
