function writeCSSHeader() {
	document.write("<style type='text/css'>\n");
	document.write("<!--\n");
}
function writeCSSFooter() {
	document.write("//-->\n");
	document.write("</style>\n");
}
function writeCSS(n, p, l, t, w, c, v) {
	if (c != '') {
		document.write("#"+ n +" { position:"+ p +"; left:"+ l +"; top:"+ t +"; width:"+ w +"; background-color:"+ c +"; layer-background-color:"+ c +"; visibility:"+ v +" }");
	} else {
		document.write("#"+ n +" { position:"+ p +"; left:"+ l +"; top:"+ t +"; width:"+ w +"; visibility:"+ v +" }");
	}
}
