///////////////////////////////////////////////////////////////////////
// Project : AW CompuTech Website
// Module : include/intro.js
// Purpose : Info box on front page
///////////////////////////////////////////////////////////////////////
// Copyright (C) AW CompuTech Ltd
// All Rights Reservered
///////////////////////////////////////////////////////////////////////
// Changes
//
// Version Date        Author               Reason
// 1.0     13/02/2009  Andrew J. Williams   Initial Version
///////////////////////////////////////////////////////////////////////


// Alter functions below to match tags and functions called by the templete.php function


function default_info()
{
  text = '<b>Welcome!</b><p>Welcome to our website. We are able to supply a range of ICT professional services to individuals and businesses. Please select your area of interest from the menu';
  text = text + '<p>All work is undertaken to a high professional standard. Andrew Williams, our Managing & ICT Director is a professional member of the <a href="http://www.bcs.org/">BCS</a>, the <a href="http://www.iap.org.uk">Institution of Analysts and Programmers</a> and <a href="http://www.computer.org/">IEEE</a>, so the company is committed to producing quality products and abiding by a professional code of ethics.';
  text = text + "You would never let a non CORGI registered engineer work on your heating, so don't trust your IT needs to somebody without professional membership!";

  tag= document.getElementById("desc");

  tag.innerHTML = text;

}

function web_info()
{
  text = '<b>Web Design</b>';
  text = text + '<p>We can provide a web solution to fit your needs ranging from a simple holding page all the way through to a fully featured web application.';
  text = text + '<p>Unlike many people out there who provide a web design service that consists of downloading a publicly available Content Management System and making a few graphical changes, your work will be undertaken by an IT professional who will design your site from the ground up to meet your needs.';

  tag = document.getElementById("desc");

  tag.innerHTML = text;

}


function softdev_info()
{
  text = '<b>Software Engineering</b>';
  text = text + '<p>We can provide help in providing software based solutions to your needs.';
  text = text + '<p>We can fully design and develop software to your requirements, whether this is an add in for your spreadsheet or a full customised application.';
  text = text + '<p>In addition we can work with any existing code or together with any development team you may have. We can undertake work in C++, VB, VBA and PHP.';
  tag = document.getElementById("desc");

  tag.innerHTML = text;

}


function support_info()
{
  text = '<b>Support</b>';
  text = text + '<p>We can provide general IT support and consultancy on your IT and network facilities.';
  text = text + '<p>We can set up a shared server for you from simple print and file sharing up to a fully secured solution.';
  text = text + ' We can advise you on a network design to your requirements. We will produce the design and recommend the hardware. We can install any required software. If neccessary we can arrange cable installation for you.';
  text = text + '<p>We can organise a general support arrangement covering your IT needs.';
  tag = document.getElementById("desc");

  tag.innerHTML = text;

}


function backup_info()
{
  text = '<b>Data Backup</b>';
  text = text + '<p>We can provide a secure backup system that can either be automated or run manually.';
  tag = document.getElementById("desc");

  tag.innerHTML = text;

}

