/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://sivamdesign.com/scripts/ */
// Topic 1-6 are numbered 0-5 below.
var details=new Array();
details[0] = "Our Mobilization Officer will start to mobilize you.You will be required to provide:* Your medical report; * Your police clearance; * Your passport; * Originals of all your certificates and diplomas which we have to authenticate."
details[1] = "Medicals cost +-R1,000 and police clearance will cost you +-R60. Visa cost +-R135. Some companies will refund you."
details[2] = "We will help you. This forms part of our service to you. Some jobs such as Nursing/ Paramedics/ Dieticians are single status only."
details[3] = "You are atomatically subscribed to our monthly newsletter in which we will keep you up to date with news from South Africa, new jobs and more."
details[4] = "You are atomatically subscribed to our monthly newsletter in which we will keep you up to date with news from South Africa, new jobs and more."
details[5] = "Epsum factorial non deposit quid pro quo hic escorol. Olypian quarrels et gorilla congolium sic ad nauseum. Souvlaki."
details[6] = "Introduction:\nClick on the buttons on the left to view the Answer!"

function topica() {
 if (document.texter.point[0].checked) { document.texter.text.value=details[0]; }
 if (document.texter.point[1].checked) { document.texter.text.value=details[1]; }
 if (document.texter.point[2].checked) { document.texter.text.value=details[2]; }
 if (document.texter.point[3].checked) { document.texter.text.value=details[3]; }
 }

// Multiple onload function created by: Simon Willison
// http://simonwillison.net/2004/May/26/addLoadEvent/
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  document.texter.text.value=details[6];
});

