var num="aaaaaa"
function colorchange(num) {
var oStyleSheet=document.styleSheets[0];
var oRule;
if(navigator.appName=="Microsoft Internet Explorer"){
oRule=oStyleSheet.rules[0];
}
else {
oRule=oStyleSheet.cssRules[0];
}
oRule.style.backgroundColor="#"+num;
}
