// 	Js to style Divs assigning color and width
// 	Original			Aug 09			Comaps
//
//
document.write ("<style type='text/css'> ");
//document.write ("* {font-family:'Times New Roman',Times,serif;font-size:16px;} ");
//document.write ("html, body {margin:0;padding:0;background-color:#fff;} ");
//document.write ("div {height:1px;} ");
//document.write (".right {text-align:right; height:auto;} ");
var id = 128;
for (var ic=0; ic<256; ic++) {
	    document.write("#d" + ic + " {height:1px; background-color:rgb(" + id + "," + ic + "," + ic + ")} ");
//	    document.write("#d" + ic + " {background-color:rgb(" + id + "," + ic + "," + ic + "); ");
//	    document.write(" width: 250px} ");
		if ((ic%2) == 1) id = id + 1;
}
document.write ("</style> ");
