
function a(Text,URL,Title)
{
var undefined;
var one=arguments[0];
var two=arguments[1];
var three=arguments[2];
if(three==undefined)
   {
   Title=Text;
   }
document.write('<li><a href="'+URL+'" title="'+Title+'">'+Text+'</a></li>');
}
document.write('<ul class="nolist">');

//----------Enter Other Links-------------------
a("Talideon.com","http://www.talideon.com","Keith's Inklings");
a("James Gosling","http://today.java.net/jag","James Gosling: on the Java road...");
a("Joel On Software","http://www.joelonsoftware.com");
a("Keith Devens","http://www.keithdevens.com");
a("Lateral Opinion","http://www.pycs.net/lateral","Some Bearded Se&ntilde;or");
a("Hack The Planet","http://wmf.editthispage.com","Hack The Planet Prime");
a("Lambda The Ultimate","http://www.lambda-the-ultimate.org","Lambda The Ultimate - Programming Languages Weblog");
a("Slashdot","http://www.slashdot.org");
a("Sam Ruby","http://www.intertwingly.net");
a("Rico Mariani","http://blogs.msdn.com/ricom/");
a("Free Variable","http://blog.willbenton.com/index.php");
a("Sjoerd Visscher","http://w3future.com/weblog/");
a("Dave Thomas","http://pragprog.com/pragdave/");
a("Eric Sink","http://software.ericsink.com","Thoughts From Yet Another Person Who Invented The Internet");
a("Eric Lippert","http://weblogs.asp.net/ericlippert");
a("Revence 27","http://revence27.faithweb.com/blog.html","My Own Blog");
a("Simon Willison","http://simon.incutio.com/");



//------------No More Other Links----------------

document.write('</ul>');







