News

Category

22
Feb

Creative Minds Entrepreneurship

Our Year 9 and 10 Project Create students and Year 12 General Health Studies students, had the unique opportunity to engage with six dynamic, local, entrepreneurs. Among them were Alexis McDonald who created the HerHelp App, Gareth Shanthikumar, co-founder of MAN UP, Brittany Garbutt, the founder of Pretzel Australia, Lucas Lane, from Glossyboys.co and our...
Read More
16
Feb

Feast Week

During Term 1, we were excited to introduce the inaugural Emmanuel Catholic College Feast Week!The primary goal of Feast Week was our commitment to service, providing students with opportunities to actively support local charities not only making a meaningful difference in the lives of others, but also fostering a sense of empathy and social responsibility....
Read More
05
Feb

Leading Change Through Connection Initiative

The College would like to thank Cameron Dawe, one of our parents for being the first to take part in our ‘Leading Change Through Connection’ initiative. During the opening Year 12 Assembly for 2024, Cameron provided tips on how to increase their chances of future employment.He discussed protecting their digital footprint, writing resumes that stand...
Read More
02
Feb

Welcome Year 7, 2024!

Year 7 students for 2024 were welcomed to the College with a fun-filled first day, beginning with a special assembly, followed by team building exercises, icebreakers and a selection of games and activities to help them transition into college life. The activities fostered a supportive and inclusive environment, encouraging students to express their individuality and...
Read More
06
Dec

Warmun Immersion 2023

On Thursday 23 November, 3 staff and 14 Year 11 students embarked on a trip of a lifetime to the remote Kimberley community of Warmun. The morning began with a short flight from Perth domestic airport to Kununurra. Upon arrival we collected our two vehicles and headed to our accommodation for the night, Discovery Park...
Read More
1 2 3 4 5 27
<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>