<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Cuvou.com</title> <link rel="StyleSheet" type="text/css" media="screen" href="/designs/lavender/screen.css"> <link rel="StyleSheet" type="text/css" media="print" href="/designs/lavender/print.css"> </head> <body> <div style="display: none"> <a href="aelita/"><small>Don't Click Here</small></a> <a href="aelita/guestbook/"><small>.</small></a> <a href="aelita/guestbook/post/"><small>.</small></a> <a href="aelita/guestbook/contact/"><small>.</small></a> <a href="aelita/guestbook/email/"><small>.</small></a> <a href="aelita/guestbook/message/"><small>.</small></a> </div> <div class="leader"> <img src="/designs/lavender/cuvou.gif" alt="Cuvou"> </div> <div class="navstrip"> <div class="navi"> <div class="navhead">Cuvou</div> » <a href="#link?module=index">Homepage</a><br> » <a href="#link?module=guestbook">Guestbook</a><br> » <a href="#link?module=map">Site Map</a><br> » <a href="#http://www.project-fearless.com/">Project Fearless</a> <div class="navhead">Author</div> » <a href="#link?module=cuvou">Biography</a><br> » <a href="#link?module=pics">Pictures</a><br> » <a href="#link?module=contact">Contact</a> <div class="navhead">Creativity</div> » <a href="#link?module=render">3D Rendered</a><br> » <a href="#link?module=flash">Flash Animation</a><br> » <a href="#link?module=fonts">TrueType Fonts</a><br> » <a href="#link?module=philosophy">Philosophy</a> <div class="navhead">Software</div> » <a href="#link?module=distro">[Distro Help]</a><br> » <a href="#link?module=pccc">CyanChat Client</a><br> » <a href="#link?module=azulenc">Azulian Encoder</a><br> » <a href="#link?module=errorgen">Error Generator</a><br> » <a href="#link?module=tkcalc">Tk Calculator</a><br> » <a href="#link?module=terminal">Terminal Apps</a><br> » <a href="#link?module=metacity">Metacity</a><br> » <a href="#link?module=apps">Misc. Apps</a> <div class="navhead">Articles</div> » <a href="#link?module=ubuntu">To Ubuntu</a><br> » <a href="#link?module=acer">Aspire 5050</a> <div class="navhead">Projects</div> » <a href="#link?module=tkhtml">Tk HTML</a><br> » <a href="#perlaim/dev.html">PerlAIM</a> <div class="navhead">Web Tools</div> » <a href="/wizards/translator.html">Azulian Web Enc.</a> <div class="navhead">E-Mail</div> » <a href="#http://mail.live.com">Check E-Mail</a><br> » <a href="#https://domains.live.com/members/signup.aspx?domain=cuvou.net">Sign Up</a><p> » <a href="#link?module=referer">HTTP Referrers</a><br> » <a href="#link?module=agents">User Agents</a><br> » <a href="#link?module=stats">File Popularity</a> <div style="text-align: center"> <a href="http://validator.w3.org/check?uri=referer"> <img src="/designs/lavender/html.png" width="88" height="31" alt="HTML 4.01 Strict"> </a><br> <a href="http://jigsaw.w3.org/css-validator/"> <img src="/designs/lavender/css.png" width="88" height="31" alt="Valid CSS"> </a><br> <a href="http://www.perl.com/"> <img src="/designs/lavender/perl.png" width="88" height="31" alt="Powered by Perl"> </a><br> <a href="http://www.fedoraproject.org/"> <img src="/designs/lavender/fedora.png" width="88" height="31" alt="Powered by Fedora"> </a> </div> </div> </div> <div class="wrapper"> <h1>Cuvou.com Lavender</h1> This is the original web design for Cuvou.com, codenamed Lavender. This design was later replaced with <a href="/designs/starburst">Starburst</a>. <h1>Heading Level 1</h1> And some text. <h2>Heading Level 2</h2> And more text. <h3>Heading Level 3</h3> And some more text. <h4>Heading Level 4</h4> And even more text.<p> <pre>And preformatted text!</pre> </div> <p> <div class="copyright"> All content on this website is original and is copyright © 2007 Casey Kirsle.<br> Use content only with permission. <p> </div> <script type="text/javascript"> /* ########################################################## # Hyperlink Editor Script || Copyright 2007 Casey Kirsle # #--------------------------------------------------------# # This script makes all offsite links open in a new # # window, and turns all e-mail links in the format of # # "name-at-domain.com" into "name\@domain.com" # #--------------------------------------------------------# # Use content only with permission. Get permission from # # casey "at" cuvou.org # ########################################################## */ // var localAddr = new Array(); // localAddr[0] = "cuvou.com"; // localAddr[1] = "www.cuvou.com"; // localAddr[2] = "cuvou.net"; // localAddr[3] = "www.cuvou.net"; // localAddr[4] = "cuvou.org"; // localAddr[5] = "www.cuvou.org"; // localAddr[6] = "upsilon.cuvou.com"; // if (document.getElementsByTagName) { // var links = document.getElementsByTagName("a"); // for (var i = 0; i < links.length; i++) { // var loc = links[i].href; // var parts = loc.split ("/"); // http, null, domain name, request // var prot = parts[0].split(":"); // var protocol = prot[0]; // protocol.toLowerCase; // if (protocol == "http" || protocol == "https") { // // This is an absolute URL. // var isLocal = 0; // for (var j = 0; j < localAddr.length; j++) { // if (parts[2] == localAddr[j]) { // isLocal = 1; // } // } // if (isLocal == 1) { // // Local links don't need to be modified. // } // else { // // Remote links need to open in a new window. // links[i].target = "_blank"; // } // } // else if (protocol == "mailto") { // // MailTo link. See if this isn't a normal link. // if (loc.indexOf("-at-") > -1) { // var newhref = loc.split("-at-").join("@"); // links[i].href = newhref; // // Convert it in the text too. // if (links[i].innerHTML.indexOf("-at-") > -1) { // var mailLabel = links[i].innerHTML.split("-at-"); // var newLabel = mailLabel.join ("@"); // links[i].innerHTML = newLabel; // } // } // } // else if (protocol == "msnim") { // if (loc.indexOf("-at-") > -1) { // var newhref = loc.split("-at-").join("@"); // links[i].href = newhref; // // Convert it in the text too. // if (links[i].innerHTML.indexOf("-at-") > -1) { // var mailLabel = links[i].innerHTML.split("-at-"); // var newLabel = mailLabel.join ("@"); // links[i].innerHTML = newLabel; // } // } // } // } // } </script> </body> </html>