<!--

function createcolor() {
var text1 = document.cg.color.value;


var cg = "Here is your color: <font face='verdana' color='"+ text1 +"'>This is your color it is "+ text1 +"</font>";

document.open();
document.write(cg);
document.close();
}
//-->

