function select_all()
{
var text_val=eval("document.form1.iconcode");
text_val.focus();
text_val.select();
therange=text_val.createTextRange()
therange.execCommand("Copy")
}
function copyit(theField) 
{
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
