viewCSS()
Returns a visual representation of stylesheet elements
.panel

.row_head

.head

.arrow_prev

.arrow_next

.day_current

.day_special

.day_other

.row_foot

.foot

.foot_over

.foot_down

.tip_title

.tip_box

.time_list

  
  USAGE
<cfoutput>#viewCSS(form.cssTxt)#</cfoutput>

  CODE

function viewCSS(cssCode) {
	var i ="";
	var cssItem="";
	var ret="";
	for(i=1;i lte listlen(arguments.cssCode,'}');i=i+1)
	{
	cssItem = listgetAt(arguments.cssCode,i,'}');
	if(findNocase('{',cssItem)){
								ret = ret & '<div style="#trim(mid(cssItem,findNocase("{",cssItem)+1,len(cssItem)))#">#trim(mid(cssItem,1,findNocase("{",cssItem)-1))#</div><b>';
								}
	}
	return ret;
}
  COMPATIBILITY
ColdFusion MX+
  BUGS / FEATURE REQUESTS
shlomygantz@hotmail.com
  EXAMPLE
http://www.shlomygantz.com/customtags/udf_viewCSS/viewCSS_readme.cfm