<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Colorizer Demo</title>
<script type="text/javascript">
function factorial(n)
{
var rc= 1;
for (var i=1;i<=n;i++)
rc*= i;
return rc;
}
</script>
<style>
h1 { font-size:1.3em; color:#0000FF; font-weight:bold }
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>Colorizer Demo</h1>
<a href="Default.htm">Documentation</a><br /><br />
<a href="Colorize.ashx?Path=Example.htm">Colorize Me</a>
</div>
</form>
</body>
</html>