function doFldr5(){
	// to add new facts, simply follow the existing structure - eg: fact[x]="quick fact"
	// each fact should be on a single line.
	// if a fact includes a " it will be required to put a backslash \ in front of it, otherwise it will give an error.
	// if a fact is added and/or removed, it will be required to update the equation random_num below.
	fact = new Array
	 fact[1]="<img src=\"/random/folder5/f5_001.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[2]="<img src=\"/random/folder5/f5_002.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[3]="<img src=\"/random/folder5/f5_003.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[4]="<img src=\"/random/folder5/f5_004.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[5]="<img src=\"/random/folder5/f5_005.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[6]="<img src=\"/random/folder5/f5_006.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[7]="<img src=\"/random/folder5/f5_007.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[8]="<img src=\"/random/folder5/f5_008.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	 fact[9]="<img src=\"/random/folder5/f5_009.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	fact[10]="<img src=\"/random/folder5/f5_010.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	fact[11]="<img src=\"/random/folder5/f5_011.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	fact[12]="<img src=\"/random/folder5/f5_012.jpg\" width=\"300\" height=\"258\" alt=\"\" border=\"0\" style=\"border-left: 2px solid #fff; border-right: 2px solid #fff; border-bottom: 2px solid #fff;\" />"
	
	// in the code below, the number that is being multiplied should be one less than the number of facts in the list above.
	random_num = (Math.round((Math.random()*11)+1))
	
	document.write(fact[random_num]);
}