function getRandomColor(){
var colorValue = [0,1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f'];
var s = "#";
for (var i=0;i<6;i++) {
s+=colorValue[Math.floor(Math.random()*16)];
}
return s;
}
function getRandomColor(){
var colorValue = [0,1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f'];
var s = "#";
for (var i=0;i<6;i++) {
s+=colorValue[Math.floor(Math.random()*16)];
}
return s;
}