function showPic(whichpic) {
	  //Check to see if the color text box is on the screen
	  if (!document.getElementById("TXTidOption6")) return false;
	  
	  var lgImage
	  var theTextBox
	  var ColorName
	  
	  lgImage = document.getElementById("lgFabric");
	  theTextBox = document.getElementById("TXTidOption6");
	  ColorName = whichpic.getAttribute("alt")
	  
	  lgImage.src = whichpic.src
	  theTextBox.value = ColorName
	  
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function setValue(TheValue) {
		//Check to see if the color text box is on the screen
		if (!document.getElementById("TXTidOption6")) return false;
		var TheTextBox
		TheTextBox = document.getElementById("TXTidOption6")
		TheTextBox.value = TheValue
}


/*

function showPic(whichpic) {
  if (!document.getElementById("placeholder")) return true;
  var source = whichpic.getAttribute("href");
  var placeholder = document.getElementById("placeholder");
  placeholder.setAttribute("src",source);
  if (!document.getElementById("description")) return false;
  if (whichpic.getAttribute("title")) {
    var text = whichpic.getAttribute("title");
  } else {
    var text = "";
  }
  var description = document.getElementById("description");
  if (description.firstChild.nodeType == 3) {
    description.firstChild.nodeValue = text;
  }
  return false;
}

function prepareGallery() {
  if (!document.getElementsByTagName) return false;
  if (!document.getElementById) return false;
  if (!document.getElementById("imagegallery")) return false;
  var gallery = document.getElementById("imagegallery");
  var links = gallery.getElementsByTagName("a");
  for ( var i=0; i < links.length; i++) {
    links[i].onclick = function() {
      return showPic(this);
	}
    links[i].onkeypress = links[i].onclick;
  }
}


addLoadEvent(prepareGallery);

*/


