
// Title: services.js
// Date: 17:48 2 August 2008
// Version: 
// Copyright: Copyright (c) 1994-2010 Global Web Limited 
// Telephone: +44 1224 454000
// Web: http://www.globalweb.co.uk


function onService(id)
{
var x = $(id+"x");

if (x) { x.style.display = 'block'; }
}


function offService(id)
{
var x = $(id+"x");

if (x) { x.style.display = 'none'; }
} 
