﻿
function closeBox()
  {
  document.getElementById('ansbox').style.display = "none";
  }
  
function openBox(ansNum)
  {
  var ansArray = new Array();
  ansArray[1] = "1. Basic hosting is priced at $75.00 per year.  This price includes registering one domain"+
  " name.<br/>Website design starts at $50.00 per page with discounts for multiple simple pages and additions"+
  " for more complex sites.";
  ansArray[2] = "2. Yes.  Of course that's really to simple an answer, depending on the contract you have with"+
  " your current hosting company you may be able to move it immediately, if you have a contract you will need"+ 
  " to find out how long it is for. The other consideration is that you will want to assure that you have the"+
  " right to your domain name.  Contact us and we will help with determining your transfer issues."; 
  ansArray[3] = "3. Probably not.  Most domain registrations are for one year, our hosting plan is for one "+
  "year that means that sometime during the hosting period your registration will need to be renewed.";
  ansArray[4] = "4. We can register the domain name of your choice. You retain rights to that name.  It is "+
  "recommended that you chose several names to assure the one you want is available.";
  ansArray[5] = "5. Contact us with your name, phone number, and a convenient time for us to call you.  We "+
  "will discuss your needs and help you determine the best way to get your ideas on the World Wide Web.";
  ansArray[6] = "6. You have to let us know what you want to have as far as content i.e. pictures, colors, "
  "sounds and animations.  With that information we will start to design your site.";
  ansArray[7] = "7. No, we can not post any copyrighted material to websites without the copyright "+
  "owner’s permission.  We can, however, put links on your site to any other site on the web.";
  ansArray[8] = "8. Camelot Web design will work diligently to assure you are satisfied with your web site, if "+
  "we are unable to satisfy you we will refund your money minus a $10.00 fee (which covers the cost of your "+
  "domain name registration) and remove your site, you still own the domain name.";
  ansArray[9] = "9. Your website will be registered with the major search engines.  Where these search "+
  "engines rank your site is based on many variables.  Your site will be designed with these in mind and "+
  "we will explain this to you during the design process.";
  ansArray[10] = "10. A very simple site that you have the design ideas for can be put up within 24 hours "+
  "of receiving your payment.  More complex sites will be posted for your review in a testing area and will "+
  "be put up within 24 hours of your final approval.";
  ansArray[11] = "11. Simple changes i.e. colors, adding a picture, changing a link are billed at $5.00, "+
  "more complex changes that require a redesign of your page will be negotiated before they are placed on "+
  "your site.";
  ansArray[12] = "12. We strongly discourage this. Camelot Web Design sites are done primarily in HTML and "+
  "we have found that code generators tend to create twice the code necessary to display a page and often "+
  "lack W3C compliance.  If you feel this is necessary contact us and we may make arrangements for you. ";
  ansArray[13] = "13. Your website content is up to you with the exception that we will not post content that "+
  "we deem to be objectionable or illegal. ";
  ansArray[14] = "14. Browsers all have minor differences, your web site is tested using Internet Explorer, "+
  "Firefox, Opera, and Safari.";
  ansArray[15] = "15. Most free hosting plans do not allow for your own domain name, technical support is "+
  "limited at best,  and the learning curve and limitations of the page design programs can cause you problems.";
  ansArray[16] ='16. To view one of our web sites click on this link <a href="http://wfrm.org/" target="new">wfrm.org</a>.';
  ansArray[17] = "17. On the Contact Page there are email links to contact us, if you have not configured "+
  "your browser to support email you may email us at sales@camelotwebdesign.com.  We will provide you a "+
  "contact phone number upon receipt of your email.";
  document.getElementById('ansbox').style.display = "block";  
  document.getElementById('anstxtp').innerHTML = ansArray[ansNum];  
  }// openBox 
 