﻿// JScript File

function getBlockCE() {
    var whichQuote=Math.floor(Math.random()*2);

    var quote=new Array(2)
    quote[0]="<p>ITQ  Celerior BV<br />" +
            "<br />" +
            "<strong>Correspondence:</strong><br />" +
		    "PO Box  75358<br />" +
		    "1070 AJ Amsterdam</p>" +
		    "<p><strong>Visit:</strong><br />" +
		    "Zeestraat 250<br />" +
		    "1949 AG  Wijk aan Zee</p>";
    quote[1]="<p>Do you share our<br />" +
            "´Passion for Technology´? <br />" +
            "<br />" +
            "Please go to our <a href='/uk/celerior_vacancies_uk.aspx'>vacancy page</a>.<br />" + 
            "<br />" +
            "ITQ Celerior offers you excellent terms of employment and fringe benefits.</p>"

    document.write(quote[whichQuote]);
}

function getBlockCO() {
    var whichQuote=Math.floor(Math.random()*3);

    var quote=new Array(3)
    quote[0]="<p>ITQ  Consultancy BV<br />" +
            "<br />" +
            "<strong>Corrrespondence:</strong><br />" +
		    "PO Box  75358<br />" +
		    "1070 AJ Amsterdam</p>" +
		    "<p><strong>Visit:</strong><br />" +
		    "Zeestraat 250<br />" +
		    "1949 AG  Wijk aan Zee</p>";
    quote[1]="<p>Vacancies <br />" +
            "<br />" +
            "Please go to our <a href='/uk/consultancy_vacancies_uk.aspx'>vacancy page</a>.<br />" +
            "<br />" +
            "If you do not find anything that suits you immediatly, send us an<br />" +
            "<a href='/uk/consultancy_apply_uk.aspx'>open job application</a>" +
            " or ask for an interview with no obligation.";
    quote[2]="<p>Service sheets<br />" +
            "<br />" +
            "If you are looking for a solution to your ICT problem,<br />" +
            "have a look through our <a href='/uk/consultancy_servicesheets_uk.aspx'>service sheets</a>." +
            "<br />" +
            "<br />" +
            " They give concrete descriptions" +
            " of a number of our services and solutions.</p>"; 

    document.write(quote[whichQuote]);
}

