//on/off
function showpostit()
{
document.getElementById("postit").style.display="block";
document.cookie ='wdd=showpostit; path=/'; 
var id=1
while (id<=10)
{
document.getElementById(id).className = "yellow";
id++;
}
}
function hidepostit()
{
document.getElementById("postit").style.display="none";
document.cookie ='wdd=showpostit; expires=Sat, 1 Jan 2000 12:00:00 UTC; path=/';
var id=1
while (id<=10)
{
document.getElementById(id).className = "nobg";
id++;
}
}
//definitions
function _default()
{document.getElementById("def_title").innerHTML="Jargon Buster";
document.getElementById("definition").innerHTML="Place your cursor over the words with a yellow background for it's definition.";}
function brochure()
{
document.getElementById("def_title").innerHTML="Brochure Web Sites";
document.getElementById("definition").innerHTML="Web sites aimed at raising product / company awareness. Similar to an advitisement available to the public 24 7. These web sites are not considered ecommerce.";
}
function bandwidth()
{
document.getElementById("def_title").innerHTML="Bandwidth";
document.getElementById("definition").innerHTML="The amount of data transferred to or from the website or server within a prescribed period of time.";
}
function w3c()
{
document.getElementById("def_title").innerHTML="W3C (World Wide Web Consortium)";
document.getElementById("definition").innerHTML="An international industry consortium which develops standards. By using these standards ensures site compatibility and stability across different browsers. (So as many people as possible can visit your site)";
}
function seo()
{
document.getElementById("def_title").innerHTML="SEO (Search Engine Optimization)";
document.getElementById("definition").innerHTML="Coding techniques used for search engines to better understand web pages/sites and reference them above others that do not use these practises. (Helping as many people as possible reach your site)";
}
function usability()
{
document.getElementById("def_title").innerHTML="Usability";
document.getElementById("definition").innerHTML="Best practises relating to text content, images, page layout, navigation, coding and download speeds.(Creating an efficient and easy to use environment for site visitors, resulting in less frustration and increased chances of return visits)";
}
function dnr()
{
document.getElementById("def_title").innerHTML="Domain Name Registration";
document.getElementById("definition").innerHTML="The process of acquiring a Domain Name / web address (www.yourbusiness.co.uk) for your web site and configuring it to a server.";
}
function hosting()
{
document.getElementById("def_title").innerHTML="Hosting";
document.getElementById("definition").innerHTML="Where your web site is stored on a server and connected to the internet. Different web sites may need different hosting capabilities depending on their functionality and purpus.";
}
function updating()
{
document.getElementById("def_title").innerHTML="Updating";
document.getElementById("definition").innerHTML="You might want to remove/add content to your web site.";
}
function ciw()
{
document.getElementById("def_title").innerHTML="Certified Internet Webmaster(CIW)";
document.getElementById("definition").innerHTML="CIW is the world's largest Web design certification program (www.ciwcertified.com)";
}
function needsanalysis()
{
document.getElementById("def_title").innerHTML="Needs Analysis";
document.getElementById("definition").innerHTML="The process to formally define web site requirements (functionality, look and mood, time frame, etc...)";
}
function imageo()
{
document.getElementById("def_title").innerHTML="Image Optimization";
document.getElementById("definition").innerHTML="Altering image properties to compress file size or/and applying image coding techniques, increasing the web site's speed, while maintaining the image's quality";	
}