Laura Kendall

By

02
Aug

Community Forum

The Emmanuel ThinkNext Community Forum was an inspiring day where students, staff, parents and community members came together to discuss the future of education. Many ideas were generated and crucial feedback gathered to help direct the future of teaching and learning at Emmanuel.
Read More
31
Jul

AUSTSWIM National Best New Swim Teacher Award

Year 12 student Grace has been honoured with the prestigious AUSTSWIM National Best New Swim Teacher Award for 2023! This significant award acknowledges Grace as the most outstanding new swim teacher among the 2023 cohort of 6,000 new AUSTSWIM accredited candidates in Australia and recognises not only her high-quality skills in educating her students in...
Read More
28
Jul

Year 12 ATAR English Science Fiction Genre Study 

As part of Unit Three of Year 12 ATAR English course, students were required to study a genre, analysing how its conventions conform, subvert or challenge audience expectations. The two science fiction films, Independence Day (1996) and Arrival (2006), were studied to compare, contrast and explore these conventions, as well the context, ideas and issues...
Read More
20
Jun

Emmanuel’s Greatest Shave!

Year 12 students led the way with Emmanuel’s Greatest Shave in order to raise much needed funds for the Leukaemia Foundation. Students and staff gathered to watch as our volunteers had their heads shaved or ponytails cut off. Donations could be made online, as well as a collection of gold coin donations and the sale...
Read More
19
Jun

ACC Cross Country Carnival 2023

The Emmanuel Cross Country Squad were blessed with an amazing day for the 2023 ACC Cross Country Carnival on Thursday 1 June. The Perry Lakes course looked as appealing as a Cross Country course can and our runners were primed for the event. Our coaches, Mrs Winfield and Mr Cordingley had the team in great...
Read More
1 2 3 4 23
<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>