var ie5 = document.getElementById != null;

function doOver() {
  var el = window.event.srcElement;
  bgc = el.style.backgroundColor;

  if (bgc != "") {
    el.style.borderTopColor = "white";
    el.style.borderLeftColor = "white";
    el.style.borderRightColor = "black";
    el.style.borderBottomColor = "black";
  
    colorBox.style.backgroundColor = bgc;
    colorName.innerHTML = bgc;
  }
}

function doClick() {
	var el = window.event.srcElement;
	var cBuffer =  document.getElementById('colorBuffer').value;
	bgc = el.style.backgroundColor;
	if(cBuffer == 'bg') backgroundColor(bgc);
	else fontColor(bgc);
	document.getElementById("colorPicker").style.display = 'none';
}

function doOut() {
  var el = window.event.fromElement;
  bgc = el.style.backgroundColor;

  if (bgc != "") {
    el.style.borderColor = bgc;
  }
}
window.onload = init;

function init() {
  fixTitle();
}

function fixTitle() {
  document.title = parent.document.title;
}

var colors = new Array("white", "snow","whitesmoke","ivory", "oldlace", "linen", "seashell", "peachpuff","beige","bisque","blanchedalmond","cornsilk","lemonchiffon","lightyellow","wheat","moccasin","navajowhite","khaki","burlywood","tan","darkkhaki","gold","yellow","goldenrod","peru","saddlebrown","sienna","chocolate","brown","mintcream", "aliceblue","azure","lightcyan","lightblue","powderblue","lightskyblue","skyblue","deepskyblue","cyan","aqua","aquamarine","darkcyan","royalblue","cornflowerblue","dodgerblue","blue","mediumblue","darkblue","midnightblue","navy","darkslateblue","lightsteelblue","steelblue","cadetblue","slateblue","mediumslateblue","indigo","purple","darkmagenta","darkorchid","blueviolet","mediumpurple","darkviolet","magenta","fuchsia","plum","thistle","violet","orchid","deeppink","lavender","lavenderblush","mistyrose","pink","lightpink","salmon","lightsalmon","coral","darksalmon","sandybrown","orange","orangered","tomato","darkorange","crimson","red","firebrick","maroon","darkred","indianred","rosybrown","lightcoral","honeydew","palegreen","chartreuse","lawngreen","greenyellow","lime","lightgreen","lightseagreen","teal","yellowgreen","olive","green","darkgreen","slategray","lightgrey","silver","darkgray","gray","dimgray","black");

var sysColors = new Array("activeborder","activecaption","appworkspace","background","buttonface",
"buttonhighlight","buttonshadow","buttontext","captiontext","graytext","highlight","highlighttext",
"inactiveborder","inactivecaption","inactivecaptiontext","infobackground","infotext","menu","menutext",
"scrollbar","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","window",
"windowframe","windowtext");

function writeRow(ar) {
  var cells = 15;
  var str = "";
  
  for (var i=0; i<ar.length; ) {
    str += "<tr>"
    for (var j=0; j<=cells && i<ar.length; j++) {
      str += "<td class=tdc style='background-color: " + ar[i] + "; border: 1px outset " + ar[i] + ";'>";
      str += "&nbsp;</td>\n";
      i++;
    }
    str += "</tr>\n";
  }
  return str;
}  

