

var Link = new Array();

  Link[0] = "0|March 2008";
  Link[1] = "1|Microsoft Outlook and Outlook Express Exploit Found|/2008/03/Microsoft_Outlook_and_Outlook_Express_Exploit_Found.html|";
  Link[2] = "1|Changing the Date and Time of a File|/2008/03/Changing_the_Date_and_Time_of_a_File.html|";
  Link[3] = "1|Bruce Raisley|/2008/03/Bruce_Raisley.html|";
  Link[4] = "1|Orange Sky|/2008/03/Orange_Sky.html|";
  Link[5] = "1|A Google search on your site|/2008/03/A_Google_search_on_your_site.html|";
  Link[6] = "1|Text over text in HTML|/2008/03/Text_over_text_in_HTML.html|";
  Link[7] = "1|America Lost a President|/2008/03/America_Lost_a_President.html|";
  Link[8] = "1|Returning a users location|/2008/03/Returning_a_users_location.html|";
  Link[9] = "1|Japan Looks Forward to a Robot Future|/2008/03/Japan_Looks_Forward_to_a_Robot_Future.html|";
  Link[10] = "0|February 2008";
  Link[11] = "1|Berkeley moonbats attacking police|/2008/02/Berkeley_moonbats_attacking_police.html|";
  Link[12] = "1|Software Button Maker|/2008/02/Software_Button_Maker.html|";
  Link[13] = "1|A Life Lost|/2008/02/A_Life_Lost.html|";
  Link[14] = "0|January 2008";
  Link[15] = "1|Unflip That House|/2008/01/Unflip_That_House.html|";
  Link[16] = "1|Sasquatch is on MARS|/2008/01/Sasquatch_is_on_MARS.html|";
  Link[17] = "1|Romney Steals Airtime|/2008/01/Romney_Steals_Airtime.html|";
  Link[18] = "1|Spoofing the MAC address|/2008/01/Spoofing_the_MAC_address.html|";
  Link[19] = "1|Hillary wins by 43% 56% of the vote|/2008/01/Hillary_wins_by_43_56_of_the_vote.html|";
  Link[20] = "1|Spend it like Barack|/2008/01/Spend_it_like_Barack.html|";
  Link[21] = "0|December 2007";
  Link[22] = "1|Drugs|/2007/12/Drugs.html|";
  Link[23] = "1|Flight-Jacking, You've been bumped!|/2007/12/FlightJacking_Youve_been_bumped.html|";
  Link[24] = "0|October 2007";
  Link[25] = "1|Unread Mail Problems on XP|/2007/10/Unread_Mail_Problems_on_XP.html|";
  Link[26] = "1|Honey Bees Vanishing!|/2007/10/Honey_Bees_Vanishing.html|";
  Link[27] = "1|USB Storage|/2007/10/USB_Storage.html|";
  Link[28] = "0|September 2007";
  Link[29] = "1|Do not touch PMS|/2007/09/Do_not_touch_PMS.html|";
  Link[30] = "0|August 2007";
  Link[31] = "1|BPL|/2007/08/BPL.html|";
  Link[32] = "1|A US Military Draft|/2007/08/A_US_Military_Draft.html|";
  Link[33] = "1|Six dead in coal mine accident|/2007/08/Six_dead_in_coal_mine_accident.html|";
  Link[34] = "1|Human Skull|/2007/08/Human_Skull.html|";
  Link[35] = "1|K9PP|/2007/08/K9PP.html|";

//  Link[0] = "0|February 2008";
//  Link[1] = "1|Something Special|http://www.javascriptsource.com|";
//  Link[2] = "1|Miners all Dead|http://www.javascript.com|";
//  Link[3] = "1|Do not touch PMS|http://www.javascriptsource.com/contact-us.html|";
//  Link[4] = "1|BPL|http://www.thecounter.com|";
//  Link[5] = "1|Six dead from coal mine accident? |http://www.thecounter.com|";
//  Link[6] = "1|Human Skull |http://www.thecounter.com|";
//  Link[7] = "0|January 2008";
//  Link[8] = "1|K9PP|Login.asp|";
//  Link[9] = "1|NBC PWNED |Logout.asp|"
//  Link[10] = "0|October 2007";
//  Link[11] = "1|You have spam |http://www.javascriptsource.com|";
//  Link[12] = "1|Honey Bees Vanishing! |http://www.javascriptsource.com|";
//  Link[13] = "0|August 2007";
//  Link[14] = "1|USB Storage|http://www.javascripts.com|blank";




 for(i=0;i<Link.length;i++) {
   la = Link[i].split("|");
   if (la[0] == "0") {
    document.write("<big>"+la[1]+"</big><br>");
   } else {
      document.write("- ");
      document.write("<a href='"+la[2]+"'");
      document.write(">"+la[1]+"</a><br>");
     }

   }
