function news(){		var theNumber = 4  ;	var name1 = "August Feature: Ferazel's Wand Secrets Guide";	var link1 = "http://www.macosjournal.com/guides/ferazel/";		var name2 = "The Gaming Landscape: Gaming Links...";	var link2 = "http://www.macosjournal.com/issues/0108/game.shtml";		var name3 = "Review: WaterRace";	var link3 = "http://www.macosjournal.com/issues/0108/rev.waterrace.shtml";		var name4 = "Warehouse: Rip and Decode DVDs";	var link4 = "http://www.macosjournal.com/issues/0108/warehouse.shtml";		var ii = 0  ;	document.write("<p class='text-centered_white_bold'>New at MOSJ</p>");	while(ii < theNumber)		{			var theName = [name1, name2, name3, name4]  ;			var theLink = [link1, link2, link3, link4]  ;			//if (document.all)			//{			//	eval(divname)  ;					//}			//if(!document.all && document.getElementById)			//{			//	document.getElementById(divname) ;			//}						document.write("<p align='center'><a class='links-side' href='" + theLink[ii] + "' target='_blank'>" + theName[ii] + "</a></p>");			ii++  ;		}  ;}  ;