function createDiv(paintcol, paintid, buttid) {

  var blahnum = document.getElementById("addnumb").value;	

  var divTag = document.createElement("div");
  divTag.id = blahnum + "paint" + paintid;
  divTag.setAttribute("align","center");
  divTag.style.margin = "0px auto";
  divTag.className ="rpaint";
  divTag.innerHTML = '<span> [ <a href="#" onclick="showDiv(\'' + buttid + '\', \'' + blahnum + 'paint' + paintid + '\');">X</a> ] </span><input name="' + blahnum + 'quan' + paintid + '" value="1" /><img src="http://www.thebench504.com/products/paint/' + paintid + '.gif" />' + paintcol;
  document.getElementById("paintselected").appendChild(divTag);
  
  document.getElementById("addnumb").value = ((document.getElementById("addnumb").value*1) +1); 

}


function showDiv(buttid, selection){

  var DIVtoRemove = document.getElementById(selection);
  DIVtoRemove.parentNode.removeChild(DIVtoRemove);
  
  document.getElementById("addnumb").value = ((document.getElementById("addnumb").value*1) -1); 
  
}
 

function writetext(what){
  document.getElementById('paintcolor').innerHTML='<span>'+what+'</span>';
}
function notext(){
  document.getElementById('paintcolor').innerHTML='Choose your colour(s)';
}
