String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}
String.prototype.ltrim = function() {
	return this.replace(/^\s+/,"");
}
String.prototype.rtrim = function() {
	return this.replace(/\s+$/,"");
}

 function writeBorder(heading,contentElementId,width,height,style) {
    writeBorderTop(heading,contentElementId,width,height,style);
    
    var o = document.getElementById(contentElementId);
    document.write(o.innerHTML);
    
    writeBorderBottom();
  }

 function writeBorderTop(heading,contentElementId,width,height,style) {

    document.write("<div style='padding:0px;margin-bottom:5px;height:"+height+";width:"+width+";"+style+"'>");
    document.write("<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%' style='padding:0px;margin:0px;'>");
    document.write("<tr>");
    if (heading.length>0) {
      document.write("<td style='width:8px;height:10px;background:url(/images/border/tlh.png);background-repeat:no-repeat;'></td>");
      document.write("<td class='borderBlock' style='background:url(/images/border/th.png);background-repeat:repeat-x;padding-top:7px;padding-bottom:1px;padding-left:1px;margin-bottom: 0px;text-align: left;font-family: Arial,Helvetica,sans-serif;font-style: normal;font-variant: normal;font-weight: bold;font-size:12pt;line-height: normal;font-size-adjust: none;font-stretch: normal;color: rgb(255, 255, 255);'>");
      document.write(heading);
      document.write("</td>");
      document.write("<td style='width:8px;background:url(/images/border/trh.png);background-repeat:no-repeat'></td>");
    } else {
      document.write("<td style='width:6px;height:8px;background:url(/images/border/tl.png);background-repeat:no-repeat;background-position:1px'></td>");
      document.write("<td class='borderBlock' style='background:url(/images/border/t.png);background-repeat:repeat-x;font-size:0pt;color: rgb(255, 255, 255);'>");
      document.write("</td>");
      document.write("<td style='width:6px;background:url(/images/border/tr.png);background-repeat:no-repeat'></td>");
    }
    document.write("</tr>");
    document.write("<tr>");
    document.write("<td style='background:url(/images/border/l.png);background-repeat:repeat-y;background-position:1px'></td>");
    document.write("<td valign='top' align='left'>");

 }

 function writeBorderBottom() {
    document.write("</td>");
    document.write("<td style='background:url(/images/border/r.png);background-repeat:repeat-y;background-position:4px'></td>");
    document.write("</tr>");
    document.write("<tr>");
    document.write("<td style='font-size:0pt;width:8px;height:8px;background:url(/images/border/bl.png);background-repeat:no-repeat;background-position:1px 0px'></td>");
    document.write("<td style='font-size:0pt;background:url(/images/border/b.png);background-repeat:repeat-x;background-position:0px 5px'>");
    document.write("</td>");
    document.write("<td style='font-size:0pt;width:8px;background:url(/images/border/br.png);background-repeat:no-repeat'></td>");
    document.write("</tr>");
    document.write("</table>");
    document.write("</div>");
  }

  function onPageLoad() {
    //setInterval("document.getElementById('bottomBar2').innerHTML = (new Date()).toLocaleString();",1000);
    if (typeof onFinishedLoading == 'function'){
      onFinishedLoading();
    }
  }

  function showHideElement(elementId) {
    var target = document.getElementById(elementId);
    if (target.style.display=="") {
      target.style.display="none";
    } else {
      target.style.display="";
    }
   
  }
