News

Category

15
Aug

Students Interview longest serving Labor Foreign Minister

ATAR Modern History – Interview with Hon. Mr Gareth Evans On Wednesday 3 August 2022, Year 12 ATAR Modern History students from ViSN and Emmanuel Catholic College had the privilege of speaking with the Hon. Mr Gareth Evans, the longest serving Labor Foreign Minister. Mr Evans joined a Teams call from his home in Melbourne...
Read More
03
Aug

Staff Showcase: Kerry Randall

Head of Science Tell us a bit about your background, where did you come from? Ah, that is a very difficult question….. As a 3rd Culture adult, the question ‘Where are you from?’ is not all that straight forward. I was born in Scotland, a wee while ago and when I was three we emigrated...
Read More
03
Aug

Staff Showcase: Vicki Thompson

Head of the Arts Tell us a bit about your background, where did you come from? I arrived at Emmanuel after working in the Kimberley. As Head of The Arts & Technologies at St. Mary’s College in Broome, I established their Dance Touring Program for the department. Partnerships and tours were initiated to allow the students...
Read More
03
Aug

CPAF 2022: Drama Performance

Emmanuel’s Junior Theatre Company and Senior Drama classes competed at Holy Cross College for the Drama section of the 2022 Catholic Performing Arts Festival. Students participated in a dress rehearsal before travelling to Holy Cross College where they performed to a live audience of friends, family and adjudicators. This was a fantastic showcase of the...
Read More
25
Jul

2022 Interhouse Athletics Carnival

The Interhouse Athletics Carnival was held on Friday 24 June, a perfect winter’s day. Despite the persistent rain in the lead up, Friday of Week 9, Term 2 provided perfect conditions for athletics. During the morning session, students moved between events in their PC groups, competing in the 800m, shot put, long jump, and two...
Read More
1 9 10 11 12 13 26
<h5>Year Entry Calculator</h5> 
<form> 
    <label for="birthMonth">Birth Month:</label> 
    <select id="birthMonth" name="birthMonth"> 
        <option value="0">January</option> 
        <option value="1">February</option> 
        <option value="3">March</option> 
        <option value="4">April</option> 
        <option value="5">May</option> 
        <option value="6">June</option> 
        <option value="7">July</option> 
        <option value="8">August</option> 
        <option value="9">September</option> 
        <option value="10">October</option> 
        <option value="11">November</option> 
        <option value="12">December</option> 
    </select><br><br> 
    <label for="birthYear">Birth Year:</label> 
    <select id="birthYear" name="birthYear"> 
        <option value="2010">2010</option> 
        <option value="2011">2011</option> 
        <option value="2012">2012</option> 
        <option value="2013">2013</option> 
        <option value="2014">2014</option> 
        <option value="2015">2015</option> 
        <option value="2016">2016</option> 
        <option value="2017">2017</option> 
        <option value="2018">2018</option> 
        <option value="2019">2019</option> 
        <option value="2020">2020</option> 
        <option value="2021">2021</option> 
        <option value="2022">2022</option> 
        <option value="2023">2023</option> 
        <option value="2024">2024</option> 
        <option value="2025">2025</option> 
    </select><br><br> 
    <input type="button" value="Calculate" onclick="calculateYear()"><br><br> 
    <p>Year 7: <span id="year7Entry"></span></p> 
    <p>Year 8: <span id="year8Entry"></span></p> 
    <p>Year 9: <span id="year9Entry"></span></p> 
    <p>Year 10: <span id="year10Entry"></span></p> 
    <p>Year 11: <span id="year11Entry"></span></p> 
    <p>Year 12: <span id="year12Entry"></span></p> 
</form>
<script> 
    function calculateYear() { 
        // Get the birth month and year from the form 
        var birthMonth = parseInt(document.getElementById("birthMonth").value); 
        var birthYear = parseInt(document.getElementById("birthYear").value); 

        // Calculate the year the student will enter Year 7 
        var year7Entry = birthYear + 12; 
        if (birthMonth > 6) { 
            year7Entry++; 
        } 
        // Calculate the year entry from Year 7 
        var year8Entry = year7Entry +1; 
        var year9Entry = year7Entry +2; 
        var year10Entry = year7Entry +3; 
        var year11Entry = year7Entry +4; 
        var year12Entry = year7Entry +5; 

        // Set the calculated year in the form 
        document.getElementById("year7Entry").innerHTML = year7Entry; 
        document.getElementById("year8Entry").innerHTML = year8Entry; 
        document.getElementById("year9Entry").innerHTML = year9Entry; 
        document.getElementById("year10Entry").innerHTML = year10Entry; 
        document.getElementById("year11Entry").innerHTML = year11Entry; 
        document.getElementById("year12Entry").innerHTML = year12Entry; 
    } 
</script>