var hmsg = new Array();
<!--start domain name-->
hmsg["wdn"] = new helpmsg(
"What is Domain Name",  "h4", "", "Your domain name 'www.yourDomain.com' directs visitors to your home page on the Internet. It can also be used as part of your e-mail address. For example: sales@yourDomain.com. Domain names are the familiar, easy to remember names for computers on the Internet 'such as www.ExclusiveWebDesign.co.za'. They correspond to a series of numbers called Internet Protocol numbers 'IP numbers' that serve as routing addresses on the Internet."); 

hmsg["ydn"] = new helpmsg(
"Why do I nead a Domain Name",  "h4", "", "so the people can have something to type in the address bar.");

hmsg["hm"] = new helpmsg(
"How mach das it cost",  "h4", "", "In addition if you purchase a web design service form us you well receive a FREE domain name for the first year. Aftar that for the next years to come you have to pay as little as plus minus $20/$30 per year. Each register sets the price it charges for registering names, and prices very significantly among different registers.");

hmsg["cdn"] = new helpmsg(
"What do I have to considder?",  "h4", "", "The best domain names are short—ten characters or less—and are easy to remember. Think of short words or phrases that might help people remember your site. The domain name does not need to be the name or a description of the technology that your project has developed. Considder choosing an arbitrary name that could grow into a trademark, such as Kodak for cameras or Saturn for cars.");
<!--end domain name-->

<!--start services-->
hmsg["webDesign"] = new helpmsg(
"Website Design",  "h4", "", "You are going to get not too small or too big web presentation. Your own domain name ( www.yourCompany.co.za ). We will need: text, title, some pictures and wishes, if there are any.");

hmsg["webDevelopment"] = new helpmsg(
"Website Development",  "h4", "", "Terms like 'MySQL database' 'PHP scripting language' 'Apache web server' and 'ASP' do not usually conjure up enterprising ideas -- but when we use those tools to organize your information, we take the raw data you are inundated with each day and make it into information that's valuable -- and profitable. You can save both time and money with database-driven solutions developed.");

hmsg["eCommerce"] = new helpmsg(
"E-Commerce Website",  "h4", "", "A full featured e-commerce site incorporates all of the bookkeeping and stocking tools with the flexibility and utility of a shopping cart that allows the customer the utmost in convenience and usability. The customer's experience is intuitive and seamless, and the merchant enjoys the use of a large selection of selling and marketing tools.");

hmsg["intranetDesign"] = new helpmsg(
"Intranet Design and Development",  "h4", "", "Intranet is a private system that delivers distributed, cross-platform business applications to a secured network of computers.");

hmsg["searchEngine"] = new helpmsg(
"Search Engine Optimizing",  "h4", "", "Did You Know that over 85% of web users use search engines to find sites like yours? Millions of people each day turn to the major search engines to find products, services and information. With over 1 billion web sites listed with search engines.");

hmsg["sitePromotion"] = new helpmsg(
"Site Promotion",  "h4", "", "After your site is ready and online, it must be found by its targeted group of the millions Internet users. We can submit your site to thousands of search engines and try to get the top positions, also arrange the right banner and linkexchange with other sites. Newsgroup announcements, newsletter marketing etc.");

hmsg["siteMaintenance"] = new helpmsg(
"Site Maintenance",  "h4", "", "This includes periodic updates and the addition of new materials and features. We can update your site on a per-job basis or as part of a maintenance contract.");

hmsg["siteRedisign"] = new helpmsg(
"Website re-design & optimization",  "h4", "", "If you have a Web site and feel that there is room for improvement, we can help you bring it up to speed in the shortest possible time. We'll handle anything from a quick spruce-up to a complete overhaul.");

hmsg["webHosting"] = new helpmsg(
"Web Hosting",  "h4", "", "Web hosting allows your Web site to be connected to the Internet at high speed via a Web server so its information can be viewed globally through a browser. A service that allows you to upload and store a site's HTML documents and related files on a Web server. This makes the files available on the World Wide Web for viewing by the public. Also called site hosting.");

hmsg["domainName"] = new helpmsg(
"Domain name Registration",  "h4", "", "A Web site address. The unique name that identifies an Internet site. Domain Names always have 2 or more parts, separated by dots (for instance saHOSTplus.com). The part on the left is the most specific, and the part on the right is the most general. For example, the domain name of this web site is ExclusiveWebDesign.co.za");

var myPopup = new helpbox("myPopup", hmsg, 260, 230, "#5f7b94");

function helpmsg(header, hstyle, mstyle, message) {
this.DEFAULTHSTYLE = "plain";
this.DEFAULTMSTYLE = "plain";

this.header = header;
if (hstyle) this.hstyle = hstyle;
else this.hstyle = this.DEFAULTHSTYLE;
this.message = message;
if (mstyle) this.mstyle = mstyle;
else this.mstyle = this.DEFAULTMSTYLE;
return this;
}
new helpmsg();
helpmsg.prototype.show = show;

function show() {
var H = "<FONT FACE='arial'>" + this.header + "</FONT>";
if (this.hstyle == "h1") H = "<H1>" + H + "</H1>";
else if (this.hstyle == "h2") H = "<H2>" + H + "</H2>";
else if (this.hstyle == "h3") H = "<H3>" + H + "</H3>";
else if (this.hstyle == "h4") H = "<H4>" + H + "</H4>";
if (this.hstyle == "fancyheader") H = "<table width='75%'>" +
"<tr><td bgcolor='#6060ff' align='center' valign='center'>" +
"<H1><FONT COLOR='white'>" + H +
"</FONT></H1>" + "</td></tr></table>";
else if (this.hstyle == "italics")
H = "<I>" + H + "</I>";

var M = "<FONT FACE='arial' style='font-size:12px'>" + this.message + "</FONT>";
if (this.mstyle == "plain") {}
if (this.mstyle == "italics") M = M.italics();
else if (this.mstyle == "bold") M = M.bold();

var htmlpage = "";
if (this.hstyle.indexOf("header")>=0)
htmlpage = H + M;
else htmlpage = H  + M;
return htmlpage;
}

function helpbox(name, hm, width, height, bgcolor) {
this.name = name;
this.helpmessage = hm;
this.timerHandle = null;
this.windowHandle = null;
this.DEFAULTWIDTH = 0;
this.DEFAULTHEIGHT = 0;
this.DEFAULTBGCOLOR = "#5f7b94";
this.POPUPDELAY = 100;
if (width) this.width = width;
else this.width = this.DEFAULTWIDTH;
if (height) this.height = height;
else this.height = this.DEFAULTHEIGHT;
if (bgcolor) this.bgcolor = bgcolor;
else this.bgcolor = this.DEFAULTBGCOLOR;
return this;
}
function startHelp(msgindex) {
var cmdstr="top." + this.name + ".showHelp('" + msgindex + "')";
this.timerHandle = setTimeout(cmdstr, this.POPUPDELAY);
}
function showHelp(msgindex) {
if (!this.windowHandle || !this.windowHandle.name || this.windowHandle.name=="")
this.windowHandle = window.open(
"", 
"subWindow", 
"toolbar=no," +
"location=no," +
"directories=no," +
"status=no," +
"menubar=no," +
"scrollbars=no," +
"resizable=no," +
"top=10," +
"left=10," +
"width=" + this.width + "," +
"height=" + this.height
);
else
this.windowHandle.focus();
this.windowHandle.document.open();
var to_page =
"<HTML>\n" +
"<TITLE>www.ExcusiveWebDesign.co.za</TITLE>" +
"<BODY TEXT='white' BGCOLOR='" + this.bgcolor + "'><P>" +
this.helpmessage[msgindex].show() +
"</BODY></HTML>\n";
this.windowHandle.document.write(to_page);
this.windowHandle.document.close();
}
function clearHelp() {
clearTimeout(this.timerHandle);
if (this.windowHandle && this.windowHandle.name) {
this.windowHandle.close();
this.windowHandle=null;
   }
}
new helpbox();
helpbox.prototype.startHelp = startHelp;
helpbox.prototype.showHelp = showHelp;
helpbox.prototype.clearHelp = clearHelp;
// End -->
