// JavaScript Document

function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = "<b>Passport/Visa Requirements</b><br> Australian citizens require a visa to visit Vietnam. Visas should be obtained before departing Australia. Check with your travel agent for all travelling requirements..."
text[number++] = "<b>Currency</b><br> The currency in Vietnam is the Dong..."
text[number++] = "<b>Taxes</b><br> Travellers departing from Australia must pay additional taxes when paying for their booking - check with your travel agent. Departure tax is also required before departing from Vietnam and is paid at the airport..."
text[number++] = "<b>Clothing</b><br> Light casual clothing is recommended. Jackets are needed during the cooler months. Neat modest dress is recommended when visiting temples and ruins..."
text[number++] = "<b>Insurance</b><br> Travel insurance is highly recommended
and can be obtained through your travel agent before you depart..."
text[number++] = "<b>Health</b><br> Please see your doctor regarding health requirements and vaccinations before you depart..."
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(text[increment]);
