<!-- Hide code from older browsers

var inf = new Array();

// display details of each business
// name, details, link
c=0; inf[c]=new Array('Fireplace and Stove Centre','Quality Wood Burning Stoves, Fires and Accessories','fireplace_stovecentre');
c++; inf[c]=new Array('Folletts of Tavistock','Furniture and Restoration Specialists','folletts');
c++; inf[c]=new Array('Moorland Furniture','Furniture Restoration and Repair Specialists','moorland_furniture');
c++; inf[c]=new Array('Abbey Garden Machinery','Selling and servicing all types of Garden Machinery','abbeygarden');
// c++; inf[c]=new Array('Active Co','Sports, Leisure Footwear & Accessories','active_co');
c++; inf[c]=new Array('Taxis in Tavistock','Do you need a Taxi ?','taxi');
c++; inf[c]=new Array('Bounce 2 Hire','Bouncy Castles and soft play shapes hire','bounce2hire');
c++; inf[c]=new Array('B.S. & J.S. Williams','Car Sales, Servicing, Repairs & M.O.Ts','bs_js_williams');
c++; inf[c]=new Array('RDL Auto Supplies','Supplies of Automotive Parts and Paints','rdlautosupplies');
c++; inf[c]=new Array('Colin Smith','Mortgage and Insurance Intermediaries','colin_smith');
c++; inf[c]=new Array('N H Crebers','Delicatessen and Fine Wine Merchant','creber');
c++; inf[c]=new Array('E.L. Greening & Sons','High Quality Builders, Contractors and Developers','e_l_greening');
// c++; inf[c]=new Array('Quinns Menswear','The Modern Outfitter for Men','quinns_menswear');
c++; inf[c]=new Array('The Ganges','Tandoori Restaurant -Fully Licensed and Air Conditioned','ganges');
c++; inf[c]=new Array('GB Property Management','Residential Management and Letting Specialist','gb_property_management');
c++; inf[c]=new Array('Georginas Pet Supplies','Nearly Everything You Need for Your Pets','georginas_pets');
c++; inf[c]=new Array('Greener Way Construction','Design, Build, Extend and Maintain Homes','greener_way_contruction');
c++; inf[c]=new Array('Kaleidoscope Toys','Tavistocks local and unique specialist toy shop','kaleidoscope_toys');
c++; inf[c]=new Array('La Cache','Clothes for the chic woman','la_cache');
c++; inf[c]=new Array('RM Property Health Check','Maintaining Second and Holiday Homes throughout the year','rm_propertyhealthcheck');
// c++; inf[c]=new Array('Mansbridge & Balment','Local Professional Estate Agents','mansbridge_balment');
// c++; inf[c]=new Array('Mini Me','We specialise in baby and childrens clothing','mini_me');
c++; inf[c]=new Array('Morris Bros. Tavistock','Funeral Directors - Five Generations of care in the Community','morris_bros');
c++; inf[c]=new Array('Orchard Conservatories Windows and Doors','Manufacture & Installation Of High Quality PVCu Products','orchard_conservatories');
c++; inf[c]=new Array('Pannier Market',' A Fascinating and Vibrant Market','pannier_market');
c++; inf[c]=new Array('Tyremarks','Your Local Independent Type Specialist','tyremarksoftavistock');
c++; inf[c]=new Array('Richard Walke','Quality Used Vehicles, Servicing, Repairs and Parts from your local independent garage','richard_walke');
c++; inf[c]=new Array('R.M. Builders and Contractors','15 Years Local Experience offering Reliability, Service and Quality at a Fair Price','rm_builders');
c++; inf[c]=new Array('The Homespun Loft','Hand crafted items and loads of other prim this and that','thehomespunloft');
c++; inf[c]=new Array('Rose Opticians','Bringing you the latest in individual eyewear from all over the globe','rose_opticians');
c++; inf[c]=new Array('Tavistock Garage Doors','Good quality doors at low price fitted by a local company','tavistock_garage_doors');
c++; inf[c]=new Array('Tavistock Hire Centre','Your local independent hire company','tavistockhirecentre');
c++; inf[c]=new Array('Tavistock Town Hall','Perfect Venue for Wedding Receptions, Seminars, Luncheons, and Conferences','town_hall');
c++; inf[c]=new Array('Vaughans','THE ULTIMATE IN HAIR DESIGN','vaughans');
c++; inf[c]=new Array('Ward Chowen','Chartered Surveyors, Estate Agents and Auctioneers','ward_chowen');
c++; inf[c]=new Array('Azur Consultancy','Chartered Accountants and Chartered Management Accountants','business_services');
c++; inf[c]=new Array('Men for all Seasons','We offer Gardening Care all year round','menforallseasons');
// c++; inf[c]=new Array('Kimono Graphic Design Solutions','Listening to your needs and using great design we give your company an updated or fresh new image','kimono_graphic_design');
// c++; inf[c]=new Array('Kendlebell','Professional Telephone Answering Service and Virtual Office Services','kendlebell');

var bct = inf.length;

// display business details
//
function b_display() {

	var mrn = Math.floor((Math.random()*bct));
	
	document.write('<tr><td><font face="Arial" color="#FF0000"><span style="font-size: 15pt">');
	document.write(inf[mrn][0]);
	document.write('</span></font></td></tr><tr><td><font face="Arial"><span style="font-size: 11pt">');
	document.write(inf[mrn][1]);
	document.write('</span></font></td></tr><tr><td><font face="Arial"><span style="font-size: 10pt"><br>');
	document.write('Click <a href="http://www.tavistockonline.co.uk/');
	document.write(inf[mrn][2]);
	document.write('.htm">here</a> for details');;
	document.write('</span></font></td></tr>');
	
}
			
// Stop hiding code -->



