Right again regarding setting the URI. This means that using javascript, we can strip color code, set our new value to be the URI and pull it back into the UI.
Code:
<script language="JavaScript">
<!--
var str = location.hash;
str=str.replace(/\\/g,"");
str=str.replace(/#....../g,"");
document.write(str);
}
// -->
</script>