<!-- hide script from old browsers
function goToFrench() {
    var strUrl = window.location.href;
    
    if (strUrl.indexOf("index.php") > 0)
        window.location = strUrl.replace("index.php", "indexx.php");
    else
        window.location = "http://www.theoakscondo.ca/indexx.php";
}

function goToEnglish(){
    var strUrl = window.location.href;
    window.location = strUrl.replace("indexx.php", "index.php");
}

function printWindowEn(){
    var strUrl = window.location.href;
    var strUrl2 = strUrl.replace("index.php", "print.php");
    var printWindow = window.open(strUrl2,'','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}
    
function printWindowFr(){
    var strUrl = window.location.href;
    var strUrl2 = strUrl.replace("indexx.php", "printx.php");
    var printWindow = window.open(strUrl2,'','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');    
}
//-->