addEvent(window, "load", sortables_init);

var SORT_COLUMN_INDEX;

function sortables_init() {
    // Find all tables with class sortable and make them sortable
    if (!document.getElementsByTagName) return;
    tbls = document.getElementsByTagName("table");
    for (ti=0;ti<tbls.length;ti++) {
        thisTbl = tbls[ti];
        if (((' '+thisTbl.className+' ').indexOf("sortable") != -1) && (thisTbl.id)) {
            //initTable(thisTbl.id);
            ts_makeSortable(thisTbl);
        }
    }
}

function ts_makeSortable(table) {
    if (table.rows && table.rows.length > 0) {
        var firstRow = table.rows[0];
    }
    if (!firstRow) return;
    
    // We have a first row: assume it's the header, and make its contents clickable links
    for (var i=0;i<firstRow.cells.length;i++) {
        var cell = firstRow.cells[i];
        var txt = ts_getInnerText(cell);
        cell.innerHTML = '<a href="#" class="sortheader" onclick="ts_resortTable(this);return false;">'+txt+'<span class="sortarrow">&nbsp;&nbsp;&nbsp;</span></a>';
    }
}

function ts_getInnerText(el) {
	if (typeof el == "string") return el;
	if (typeof el == "undefined") { return el };
	if (el.innerText) return el.innerText;	//Not needed but it is faster
	var str = "";
	
	var cs = el.childNodes;
	var l = cs.length;
	for (var i = 0; i < l; i++) {
		switch (cs[i].nodeType) {
			case 1: //ELEMENT_NODE
				str += ts_getInnerText(cs[i]);
				break;
			case 3:	//TEXT_NODE
				str += cs[i].nodeValue;
				break;
		}
	}
	return str;
}

function ts_resortTable(lnk) {
    // get the span
    var span;
    for (var ci=0;ci<lnk.childNodes.length;ci++) {
        if (lnk.childNodes[ci].tagName && lnk.childNodes[ci].tagName.toLowerCase() == 'span') span = lnk.childNodes[ci];
    }
    var spantext = ts_getInnerText(span);
    var td = lnk.parentNode;
    var column = td.cellIndex;
    var table = getParent(td,'TABLE');
    
    // Work out a type for the column
    if (table.rows.length <= 1) return;
    var itm = ts_getInnerText(table.rows[1].cells[column]);
    sortfn = ts_sort_caseinsensitive;
    if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) sortfn = ts_sort_date;
    if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) sortfn = ts_sort_date;
    if (itm.match(/^[£$]/)) sortfn = ts_sort_currency;
    if (itm.match(/^[\d\.]+$/)) sortfn = ts_sort_numeric;
    SORT_COLUMN_INDEX = column;
    var firstRow = new Array();
    var newRows = new Array();
    for (i=0;i<table.rows[0].length;i++) { firstRow[i] = table.rows[0][i]; }
    for (j=1;j<table.rows.length;j++) { newRows[j-1] = table.rows[j]; }

    newRows.sort(sortfn);

    if (span.getAttribute("sortdir") == 'down') {
        ARROW = '&nbsp;&nbsp;&uarr;';
        newRows.reverse();
        span.setAttribute('sortdir','up');
    } else {
        ARROW = '&nbsp;&nbsp;&darr;';
        span.setAttribute('sortdir','down');
    }
    
    // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
    // don't do sortbottom rows
    for (i=0;i<newRows.length;i++) { if (!newRows[i].className || (newRows[i].className && (newRows[i].className.indexOf('sortbottom') == -1))) table.tBodies[0].appendChild(newRows[i]);}
    // do sortbottom rows only
    for (i=0;i<newRows.length;i++) { if (newRows[i].className && (newRows[i].className.indexOf('sortbottom') != -1)) table.tBodies[0].appendChild(newRows[i]);}
    
    // Delete any other arrows there may be showing
    var allspans = document.getElementsByTagName("span");
    for (var ci=0;ci<allspans.length;ci++) {
        if (allspans[ci].className == 'sortarrow') {
            if (getParent(allspans[ci],"table") == getParent(lnk,"table")) { // in the same table as us?
                allspans[ci].innerHTML = '&nbsp;&nbsp;&nbsp;';
            }
        }
    }
        
    span.innerHTML = ARROW;
}

function getParent(el, pTagName) {
	if (el == null) return null;
	else if (el.nodeType == 1 && el.tagName.toLowerCase() == pTagName.toLowerCase())	// Gecko bug, supposed to be uppercase
		return el;
	else
		return getParent(el.parentNode, pTagName);
}
function ts_sort_date(a,b) {
    // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX
    aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]);
    bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]);
    if (aa.length == 10) {
        dt1 = aa.substr(6,4)+aa.substr(3,2)+aa.substr(0,2);
    } else {
        yr = aa.substr(6,2);
        if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }
        dt1 = yr+aa.substr(3,2)+aa.substr(0,2);
    }
    if (bb.length == 10) {
        dt2 = bb.substr(6,4)+bb.substr(3,2)+bb.substr(0,2);
    } else {
        yr = bb.substr(6,2);
        if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }
        dt2 = yr+bb.substr(3,2)+bb.substr(0,2);
    }
    if (dt1==dt2) return 0;
    if (dt1<dt2) return -1;
    return 1;
}

function ts_sort_currency(a,b) { 
    aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]).replace(/[^0-9.]/g,'');
    bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]).replace(/[^0-9.]/g,'');
    return parseFloat(aa) - parseFloat(bb);
}

function ts_sort_numeric(a,b) { 
    aa = parseFloat(ts_getInnerText(a.cells[SORT_COLUMN_INDEX]));
    if (isNaN(aa)) aa = 0;
    bb = parseFloat(ts_getInnerText(b.cells[SORT_COLUMN_INDEX])); 
    if (isNaN(bb)) bb = 0;
    return aa-bb;
}

function ts_sort_caseinsensitive(a,b) {
    aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]).toLowerCase();
    bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]).toLowerCase();
    if (aa==bb) return 0;
    if (aa<bb) return -1;
    return 1;
}

function ts_sort_default(a,b) {
    aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]);
    bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]);
    if (aa==bb) return 0;
    if (aa<bb) return -1;
    return 1;
}


function addEvent(elm, evType, fn, useCapture)
// addEvent and removeEvent
// cross-browser event handling for IE5+,  NS6 and Mozilla
// By Scott Andrew
{
  if (elm.addEventListener){
    elm.addEventListener(evType, fn, useCapture);
    return true;
  } else if (elm.attachEvent){
    var r = elm.attachEvent("on"+evType, fn);
    return r;
  } else {
    alert("Handler could not be removed");
  }
} 


function spacer() {
 for (i=0; i<24; i++) {
  document.write("<p>&nbsp;</p>");
 }
}

function makeArray() {
     for (i = 0; i<makeArray.arguments.length; i++)
          this[i + 1] = makeArray.arguments[i];
}

var months = new makeArray('January','February','March',
    'April','May','June','July','August','September',
    'October','November','December');

var date = new Date();
var day  = date.getDate();
var month = date.getMonth() + 1;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;

function dblclick() {
	window.scrollTo(0,0)
}
if (document.layers) {
	document.captureEvents(Event.ONDBLCLICK);
}

document.ondblclick=dblclick;

function copyright() {
 document.write("&nbsp;<font color='red' size=1>Material Copyright &copy; 1982 through " + year + ", Dr. Timothy D. Hill</font>");
}

function drtim_legend() {
document.write("<p><font size=+1>Timothy D. <u>Hill</u>, Ph.D.</font><br>International Consulting Industrial and Organizational Psychologist<br>Invited Professor, Corporate Social Responsibility<br>Past International Professor, Industrial and Organizational Psychology</p>");
}


function addFavorite(url, desc) {
 if (document.all) {
  window.external.AddFavorite(url, desc);
 } else {
 alert("Sorry: Only IE 4+ browsers support auto-bookmarking!\nNetscape users must press good old Ctrl+D to bookmark ...");
 }
}




function open_nav_configurable_window(url,loc, tool, menu, scrollV, resizeV,  leftV, topV, widthV, heightV) 
{
	var options = "location=" + loc + "," +
				  "toolbar=" 	+ tool + "," + 				  
				  "menubar=" 	+ menu + "," + 				  
				  'directories=0,' + 
				  'status=0,' + 				 
				  "scrollbars=" +  scrollV + "," +
				  "resizable="   +  resizeV +  "," +
				  "left="        +  leftV   +  "," + 
				  "top="         +  topV    +  "," +
				  "width="       +  widthV  +  "," +
				  "height="      +  heightV   ;
				  // sl1.html',1,1,1,1,200,0,620,450
	//alert(options.toString());			  
	var mW = window.open(url,"configurable",options);

}

function open_small_window(url) {
 window.open(url,"smaller","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,width=450,height=470");
//smaller.focus();
}

function refresh_open_small_window(url) {
 myWindow = window.open(url,"smaller","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,width=450,height=470");
 myWindow.location=url;
}

function open_large_window(url) {
 window.open(url,"larger","toolbar=1,location=1,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=640,height=480");
//larger.focus();
}

function open_small_scrollable_window(url) {
var options = 'location=0,' + 
 'toolbar=0,' + 
 'menubar=0,' +
 'directories=0,' + 
 'status=0,' + 
 'scrollbars=2,' +
 'resizable=0,' +
 'left=400,top=150,width=488,height=545';
var mW = window.open(url,"largerimagewindow",options);
}

function open_small_scrollable_window_aff(url) {
var options = 'location=1,' + 
 'toolbar=1,' + 
 'menubar=1,' +
 'directories=1,' + 
 'status=1,' + 
 'scrollbars=2,' +
 'resizable=1,' +
 'left=28,top=70,width=965,height=500';
 var mW = window.open(url,"largerimagewindow",options);
}

function open_popup_window(url) {
var options = 'location=0,' + 
 'toolbar=0,' + 
 'menubar=0,' +
 'directories=0,' + 
 'status=0,' + 
 'scrollbars=0,' +
 'resizable=0,' +
 'left=400,top=150,width=380,height=500';
 var mW = window.open(url,"popupwindow",options);
}

function open_xlarge_window(url) {
 window.open(url,"xlargewindow","toolbar=0,location=0,directories=0,status=1,maximize=0,menubar=0,scrollbars=1,resizable=0,width=500,height=600");
}


function MM_swapImgRestore() { //v3.0
 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
 var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
 if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.0
var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
 d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
 if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
 for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
 if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
 if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function open_popup_window_position(url) {
var options = 'location=0,' + 
 'toolbar=0,' + 
 'menubar=0,' +
 'directories=0,' + 
 'status=0,' + 
 'scrollbars=0,' +
 'resizable=0,' +
 'left=150,top=180,width=350,height=200';
 var mW = window.open(url,"popupwindow",options);
}

function open_configurable_window(url, scrollV, resizeV,  leftV, topV, widthV, heightV) {
var options = 'location=0,' + 
 'toolbar=0,' + 
 'menubar=0,' +
 'directories=0,' + 
 'status=0,' + 
 "scrollbars=" +  scrollV + "," +
 "resizable="   +  resizeV +  "," +
 "left="        +  leftV   +  "," + 
 "top="         +  topV    +  "," +
 "width="       +  widthV  +  "," +
 "height="      +  heightV   ;
//alert(options.toString());			  
 var mW = window.open(url,"configurable",options);
}

function open_fully_configurable_window(url, loc, tool, menu, dir, sta, scrollV, resizeV,  leftV, topV, widthV, heightV) {
var options = 		  'location='     	+ loc + "," + 
  'toolbar='  		+ tool + "," + 
  'menubar='  		+ menu + "," +
  'directories=' 	+ dir + "," + 
  'status=' 		+ sta + "," + 
  "scrollbars=" 	+ scrollV + "," +
  "resizable="   	+ resizeV +  "," +
  "left="        	+ leftV   +  "," + 
  "top="         	+ topV    +  "," +
  "width="       	+ widthV  +  "," +
  "height="      	+ heightV   ;
//alert(options.toString());			  
 var mW = window.open(url,"configurable",options);
}


function formatValue(argvalue, format) {
  var numOfDecimal = 0;
  if (format.indexOf(".") != -1) {
    numOfDecimal = format.substring(format.indexOf(".") + 1, format.length).length;
  }
  argvalue = formatDecimal(argvalue, true, numOfDecimal);

  argvalueBeforeDot = argvalue.substring(0, argvalue.indexOf("."));
  retValue = argvalue.substring(argvalue.indexOf("."), argvalue.length);

  strBeforeDot = format.substring(0, format.indexOf("."));

  for (var n = strBeforeDot.length - 1; n >= 0; n--) {
    oneformatchar = strBeforeDot.substring(n, n + 1);
    if (oneformatchar == "#") {
      if (argvalueBeforeDot.length > 0) {
        argvalueonechar = argvalueBeforeDot.substring(argvalueBeforeDot.length - 1, argvalueBeforeDot.length);
        retValue = argvalueonechar + retValue;
        argvalueBeforeDot = argvalueBeforeDot.substring(0, argvalueBeforeDot.length - 1);
      }
    }
    else {
      if (argvalueBeforeDot.length > 0 || n == 0)
        retValue = oneformatchar + retValue;
    }
  }

  return retValue;
}

function formatDecimal(argvalue, addzero, decimaln) {
  var numOfDecimal = (decimaln == null) ? 2 : decimaln;
  var number = 1;

  number = Math.pow(10, numOfDecimal);

  argvalue = Math.round(parseFloat(argvalue) * number) / number;
  // If you're using IE3.x, you will get error with the following line.
  // argvalue = argvalue.toString();
  // It works fine in IE4.
  argvalue = "" + argvalue;

  if (argvalue.indexOf(".") == 0)
    argvalue = "0" + argvalue;

  if (addzero == true) {
    if (argvalue.indexOf(".") == -1)
      argvalue = argvalue + ".";

    while ((argvalue.indexOf(".") + 1) > (argvalue.length - numOfDecimal))
      argvalue = argvalue + "0";
  }

  return argvalue;
}

var myclients = new Array;
//              0                              1                   2      3  4    5                                     6                            7                           8                           9                    10                                             11                         12         13         14         15         16      17
myclients[0]  = ["000Client",                  "Contact",          50000, 1, 0.80, "task 1",                            "task 2",                    "task 3",                   "task 4",                   "task 5",            "task 6",                                   "task 7",                  "task 8",  "task 9",  "task 10", "task 11",       300000, "For File Only"];
myclients[1]  = ["Accumold",                   "Warren Adolphe",   45000, 1, 0.80, "Proposal done",                     "Audit done",                "1st training (Intro) done","&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        500000, "For File Only"];
myclients[2]  = ["Boehmer Box",                "Russell Hughes",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[3]  = ["Brampton Brick",             "Mikhail Onqa",     45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[4]  = ["CAA",                        "Anita Mueller",   150000, 0, 0.50, "Preparing for proposal submission", "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[5]  = ["CRS",                        "Al xxxxxxxxxxx",   45000, 0, 0.50, "Proposal done",                     "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[6]  = ["Canavision",                 "Michael Owens",        0, 1, 1.00, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[7]  = ["China/Kings",                "Kings College",    10000, 1, 1.00, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[8]  = ["Enegery Advantage",          "Mikhail Onqa",     45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[9]  = ["FibreCast Inc.",             "George Badovinac", 45000, 1, 1.00, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[10] = ["Grote",                      "Luigi",            45000, 0, 0.50, "Waiting to write proposal",         "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[11] = ["Henderson",                  "Gord Henderson",   45000, 0, 0.50, "Proposal done",                     "Bill to follow up",         "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[12] = ["Hobart",                     "XXXXXX xxxxxxx",   45000, 0, 0.50, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[13] = ["Hoerbiger",                  "Mike Cameron",     45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[14] = ["WSI King AP",                "John Steimann",    45000, 0, 0.50, "Lean Audit Done",                   "First lesson (intro) done", "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[15] = ["Klingspor",                  "XXX xxxxxx",       45000, 0, 0.50, "Proposal done",                     "Bill to follow up",         "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[16] = ["Loblaws",                    "Len Nanjad",       45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[17] = ["London City Hall",           "Jeff Fielding",    15000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[18] = ["London City Hall",           "Jeff Fielding",   155000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[19] = ["Mott",                       "Bill Stover",      45000, 0, 0.50, "Proposal Pending",                  "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[20] = ["NSF ISO Audit",              "xref Bill Neeve", 150000, 0, 0.50, "Inital meeting",                    "Proposal done",             "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[21] = ["National Aluminum",          "Danny xxxxxx",     45000, 0, 0.50, "Waiting on Bill",                   "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[22] = ["Normapak-1",                 "Melanie Winter",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[23] = ["Normapak-2",                 "Melanie Winter",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[24] = ["Normapak-3",                 "Melanie Winter",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[25] = ["Normapak-4",                 "Melanie Winter",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[26] = ["Normapak-5",                 "Melanie Winter",   45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[27] = ["Nutraco",                    "Mikhail Onqa",     45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[28] = ["STEGH",                      "Paul Collins",    200000, 1, 0.80, "Meet with Paul Collins",            "Meet with Nancy Whitmore",  "Meet with Brenda Lambert", "Meet with Malcom Hopkins", "Project a GO!",     "Fall Launch",                              "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[29] = ["Senior Flexonics",           "Zack Velji",       45000, 1, 0.80, "Audit",                             "Intro to Lean",             "Toyota Problem Solving",   "VSM",                      "A3",                "Messaing to all employees about progress", "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",       1500000, "For File Only"];
myclients[30] = ["Spencer Steel",              "Gary Wicks",       45000, 0, 0.50, "Lean Audit",                        "First lesson (intro) done", "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[31] = ["Trench-Bushings YLF",        "Carl Lockhart",    45000, 0, 0.50, "Prposal done",                      "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[32] = ["Trench-Coil OFFICE",         "Roger Alberton",  250000, 0, 0.50, "Proposal done",                     "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[33] = ["Trench-Coil PLANT",          "Roger Alberton",  250000, 0, 0.50, "Proposal done",                     "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[34] = ["Trench-Coil YLF",            "Roger Alberton",   33600, 0, 0.50, "Proposal done",                     "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        750000, "For File Only"];
myclients[35] = ["Trench-Inst Transformer",    "N/A",              45000, 0, 0.80, "Prposal done",                      "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[36] = ["Trench-Supervisors YLF",     "Caroline East",    45000, 0, 0.50, "Introduction to Lean",              "Toyota Problem Solving",    "Making Kaizen Stick",      "Visual Lean Tools",        "Done",              "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[37] = ["WSI Signs",                  "Adam Watson",      45000, 0, 0.50, "Lean Audit",                        "Introduction to Lean",      "Toyota Problem Solving",   "Kaizen Training",          "VSM to A3 Trainig", "Messaging to all stakeholders",            "Coached Gemba Delivery",  "Final Audit",  "Waiting for King to catch up&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[38] = ["X Bob A",                    "N/A",              45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[39] = ["X Bob A",                    "N/A",              45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[40] = ["X Canavison",                "N/A",              45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[41] = ["X Express",                  "N/A",              45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];
myclients[42] = ["X Express",                  "N/A",              45000, 1, 0.80, "&bull;",                            "&bull;",                    "&bull;",                   "&bull;",                   "&bull;",            "&bull;",                                   "&bull;",                  "&bull;",  "&bull;",  "&bull;",  "&bull;",        0,      "For File Only"];

