function printLinks()
{
var links = new Array()

links[1] = "Pew Initiative on Food and Biotechnology | http://pewagbiotech.org/"

links[2] = "Information on Upcoming Pew and FDA Conference on Biotech Animals | http://pewagbiotech.org/events/0924/"

links[3] = "FDA's Center for Veterinary Medicine | http://www.fda.gov/cvm/biotechnology/bio_drugs.html"

links[4] = "GTC Biotherapeutics | http://www.transgenics.com/science/howitworks.html"

links[5] = "Union of Concerned Scientists | http://www.ucsusa.org/index.html"

links[6] = "Genetically Engineered Enviropigs | http://enviropig.uoguelph.ca/"

links[7] = "Trans Ova Genetics | http://www.transova.com/home.html"
  


for (var i=1; i<links.length; i++)
{
    var DELIMITER = '|';
	var specialText = links[i].substring(links[i].indexOf(DELIMITER)+1);
	var specialLink = links[i].substring(0,links[i].indexOf(DELIMITER))
    poodle = '<a href='+specialText+' target=_blank><FONT size="2" face="helvetica,arial">'+specialLink+'</font></a><p>';
  	document.write(poodle);
}

}