<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<style>
<!--
div.WordSection1
	{page:WordSection1;}
div.WordSection2
	{page:WordSection2;}
-->
</style>
</head>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<head>	

/* ============================
   Reset and Base Styles
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* ============================
   Dark Mode Styles
============================ */
body.dark-mode {
    background-color: #000;
    color: #868383;
}

body.dark-mode a {
    color: #1a73e8;
}

body.dark-mode header,
body.dark-mode .secondary-nav,
body.dark-mode .news-ticker,
body.dark-mode .date-time,
body.dark-mode footer {
    background-color: #000;
}

body.dark-mode .top-bar {
    background-color: #1a73e8; /* same blue background in dark mode */
    color: #fff;
}

body.dark-mode .top-bar a {
    color: #fff;
}

body.dark-mode .top-bar a:hover {
    color: #d0d0d0;
}

/* ============================
   Typography
============================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: inherit;
    margin-bottom: 15px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: inherit;
    margin-bottom: 15px;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #0c47b7;
}

/* ============================
   Container
============================ */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* ============================
   Top Bar
============================ */
.top-bar {
    background-color: #1a73e8;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.9em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

}

.top-bar a {
    color: #fff;
    margin-right: 15px;
    transition: color 0.3s;
}

.top-bar a:last-child {
    margin-right: 0;
}

.top-bar a:hover {
    color: #d0d0d0;
}

/* ============================
   Theme Toggle Button
============================ */
.theme-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1em;
    transition: color 0.3s;
}

.theme-toggle button:hover {
    color: #d0d0d0;
}

/* ============================
   Main Header
============================ */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    position: fixed;
    top: 15px; /* Height of the top bar */
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

}

.logo a {
    font-family: 'Arial Black', serif;
    font-size: 2em;
    color: black !important;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: black;
}

/* ============================
   Primary Navigation
============================ */
.primary-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.primary-nav ul li {
    margin-left: 20px;
    position: relative;
}

.primary-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
    font-weight: 500;
    padding: 5px;
    transition: color 0.3s;
}

.primary-nav ul li a:hover,
.primary-nav ul li a.active {
    color: #1a73e8;
}

.primary-nav ul li .dropdown-menu {
    display: none;
}

.primary-nav ul li:hover .dropdown-menu {
    display: block;
}

/* ============================
   Dropdown Menus
============================ */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 150px;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 8px 12px;
}

.dropdown-menu li a {
    color: #333;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
    color: #1a73e8;
}

/* ============================
   Search Bar
============================ */
.search-bar {
    position: relative;
}

.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    outline: none;
    width: 150px;
    transition: width 0.3s ease;
    font-size: 0.9em;
}

.search-bar input[type="text"]:focus {
    width: 200px;
}

.search-bar button {
    padding: 6px 10px;
    border: none;
    background-color: #1a73e8;
    color: #fff;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #0c47b7;
}

/* ============================
   Hamburger Menu
============================ */
.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 80px; /* Height of top-bar and main-header */
        left: 0;
        width: 100%;
        background-color: #fff;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-in-out;
        z-index: 998;
    }

    .primary-nav.active {
        max-height: 500px;
    }

    .primary-nav ul {
        flex-direction: column;
    }

    .primary-nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .primary-nav ul li a {
        padding: 10px 20px;
        width: 100%;
        display: block;
    }

    .primary-nav ul li .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .search-bar {
        display: none;
    }
}

/* ============================
   Secondary Navigation
============================ */
.secondary-nav {
    background-color: red;
    padding: 6px 15px;
    position: fixed;
    top: 80px; /* Below the top-bar and main-header */
    width: 100%;
    z-index: 998;
}

.secondary-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-nav ul li {
    margin: 0 15px;
}

.secondary-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.3s;
}

.secondary-nav ul li a:hover {
    color: #0c47b7;
}

/* ============================
   Live Indicator
============================ */
.live-indicator {
    display: flex;
    align-items: center;
    background-color: #e53935;
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-left: 15px;
}

.live-indicator .live-dot {
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================
   News Ticker
============================ */
.news-ticker {
    background-color: #fff;
    padding: 5px 15px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    position: fixed;
    top: 120px; /* Below top-bar, main-header, and secondary-nav */
    width: 100%;
    z-index: 997;
}

.news-ticker ul {
    display: flex;
    animation: ticker 60s linear infinite;
}

.news-ticker ul li {
    flex: 0 0 auto;
    margin-right: 30px;
}

.news-ticker ul li a {
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
    transition: color 0.3s;
}

.news-ticker ul li a:hover {
    color: #0c47b7;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .news-ticker ul {
        animation-duration: 80s;
    }
}

/* ============================
   Date and Time Section
============================ */
.date-time {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    background-color: #f1f1f1;
    font-size: 0.85em;
    color: #555;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.date-time p {
    margin: 0 8px;
}

.date-time .temp {
    font-weight: bold;
    color: #1a73e8;
}

/* ============================
   Main Content Styles
============================ */
.main-content {
    max-width: 1200px;
    margin: 180px auto 20px auto; /* Adjusted to account for fixed headers */
    padding: 0 15px;
    overflow: hidden;
}

/* Prevent images or content from leaking out */
.main-content img,
.main-content iframe,
.main-content video {
    max-width: 100%;
    height: auto;
}

/* ============================
   Footer Styles
============================ */
footer {
    background-color: #fff;
    padding: 15px 10px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #999;
    margin-top: 60px;
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: #1a73e8;
}

footer a:hover {
    color: #0c47b7;
}

/* ============================
   Responsive Enhancements
============================ */
@media (max-width: 768px) {
    .logo a {
        font-size: 1.8em;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar .top-right {
        margin-top: 5px;
    }

    .secondary-nav ul li {
        margin: 5px 10px;
    }

    .live-indicator {
        margin-left: 0;
        margin-top: 5px;
    }

    .news-ticker ul li {
        margin-right: 15px;
    }

    .main-content {
        margin-top: 220px; /* Adjusted for mobile */
		}
}

@media (max-width: 576px) {
    .logo a {
        font-size: 1.5em;
    }

    .date-time {
        flex-direction: column;
    }

    .primary-nav {
        width: 100%;
    }
}

	<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
	<meta name="description" content="Welcome to WestNet Wireless High-Speed Internet customers in Calgary, Alberta. CDMA, EVDO Operator" />
	<meta name="keywords" content="WestNet Wireless, email, mail, video, Calgary Traffic, City Wi-Fi, Calgary Wi-Fi, McAfee security, digital voice, Calgary Wireless, CDMA, Calgary EVDO, Calgary Wireless Internet, WestNet.ca, TV, television, WestNet Wireless email, Calgary Traffic, WestNet Wireless mail, high-speed wireless internet, wireless high speed internet, highspeed internet." />
	<meta property="og:image" content="" />
    <meta property="og:image:type" content="image/jpeg">  
	<meta property="fb:app_id" content="966242223397117" />

	<link rel="stylesheet" media="all" href="/styles/global.css" />
	<link rel="stylesheet" media="all" href="/styles/home-a.css" />
	<link rel="stylesheet" media="all" href="/styles/iewin6.css" />
	<link type="text/css" href="/westnet-menu.files/style.css" rel="stylesheet">
	<title>WestNet Wireless - Terms of Use</title>

</head>



<body>

<div id="sliver">



	<div>

	<p id="make-hp"><a class="make-hp-link" href="http://mail.westnet.ca" rel="default track"><!--META linkType: basic -->@WestNet.ca WebMail</a></p> 

       <p id="start"><a class="make-hpstart-link" href="http://start.westnet.ca" rel="default track"><!--META linkType: basic -->WestNet Subscriber Start Home Page</a> &nbsp  &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp Temperature in Calgary: <a href='http://weather.westnet.ca'></A>

		<ul>
		<li id="sl-ask"></li>

			<li id="sl-security"><a href="http://weather.westnet.ca" rel="default track"><!-- META linkType: basic -->WestNet Wireless Weather</a></li>
			<li id="sl-ask"><a href="mailto:support@westnet.ca" rel="ask track"><!-- META linkType: basic -->Ask WestNet</a></li>

		</ul>

		
	</div>

</div>

<div id="wrapper" >


<BR><a href=/><img src="http://www.westnet.ca/corporate_images/westrw.gif" width=170 height=34></a><BR>



<ul id="cssMenu">
	<li class="istylei0"><a class="istylei0" href="#" title="sdf"><span>Our Network</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:200px;">
		<li><a href="http://www.westnet.ca/coverage.htm">Coverage</a></li>
		<li><a href="http://www.westnet.ca/deployment.htm">Deployment</a></li>
		<li><a href="http://www.westnet.ca/case-studies.htm">Statistics & Case Studies</a></li>
		<li><a href="http://www.westnet.ca/advertise.htm">Advertise on Canada's Wi-Fi Network</a></li>
		<li><a href="http://www.westnet.ca/faq.htm">FAQ</a></li>
		<li><a href="http://www.westnet.ca/privacy-policy.htm">Wi-Fi Privacy Policy</a></li>
		<li><a href="http://www.westnet.ca/terms.htm">Terms of Use</a></li>

	</ul>
	<!--[if lte IE 6]></td></tr></table></a><![endif]--></li>
	
	<li class="istylei0"><a class="istylei0" href="http://www.westnet.ca/services.htm"><span>Services</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:184px;">
		<li><a href="http://www.westnet.ca/city-wi-fi.htm">City Wi-Fi</a></li>
	     <li><a href="http://www.westnet.ca/city-fibre.htm">NEW! City Fibre</a></li>
		<li><a href="http://www.westnet.ca/wireless-land-line-telephone.htm">Wireless Land Line Home Phone</a></li>
		<li><a href="http://www.westnet.ca/business-wireless-internet.htm">Business Wireless Internet</a></li>
		<li><a href="http://www.westnet.ca/calgary-business-wireless-telephone.htm">Business Wireless Telephone</a></li>
	     <li><a href="http://www.westnet.ca/autonomous.htm">Autonomous Wireless</a></li>
		<li><a href="http://www.westnet.ca/hotel-wi-fi.htm">Hotel Wi-Fi</a></li>
		<li><a href="http://www.westnet.ca/event-wi-fi.htm">Event Wi-Fi</a></li>
		<li><a href="http://www.westnet.ca/alberta-rural-wireless-internet.htm">Rural Wireless Internet</a></li>
		<li><a href="http://www.westnet.ca/Calgary-Cell-Tower-Co-Location.htm">Cell Site Co-Location</a></li>
		<li><a href="http://www.westnet.ca/Calgary-Broadcast-Live-Truck-Rental.htm">Broadcast Television Services</a></li>

		<li><a href="http://www.westnet.ca/Calgary-Avionics-and-Aerospace-Products-Services.htm">Avionics & Aerospace</a></li>


		
<li><a href="http://www.westnet.ca/webhosting.htm">Web Hosting</a></li>
		<li><a href="http://www.westnet.ca/email.htm">Email</a></li>
	</ul>







   <!--[if lte IE 6]></td></tr></table></a><![endif]--></li>



<li class="istylei0"><a class="istylei0" href="#" title="sdf"><span>Subscriber Services</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:170px;">
		<li><a href="http://mail.westnet.ca">@WestNet.ca Webmail</a></li>
		<li><a href="http://nwtools.westnet.ca">Network Tools</a></li>
		<li><a href="http://weather.westnet.ca">WestNet Weather</a></li>
		<li><a href="http://speedtest.westnet.ca">SpeedTest (Beta)</a></li>
		<li><a href="http://start.westnet.ca">Start Page</a></li>
		<li><a href="http://mbl.westnet.ca">SPAM/Mail Black List</a></li>

</ul>



<li class="istylei0"><a class="istylei0" href="#" title="sdf"><span>Press & Media</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:130px;">
		<li><a href="http://www.westnet.ca/press.htm">Press Releases</a></li>
		<li><a href="http://www.westnet.ca/westnet-in-the-news.htm">WestNet in the News</a></li>
	

</ul>


<li class="istylei0"><a class="istylei0" href="#"><span>Support</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:78px;">
		<li><a href="http://www.westnet.ca/support.htm">Support</a></li>
		<li><a href="http://www.westnet.ca/contact.htm">Contact</a></li>
	</ul>
	<!--[if lte IE 6]></td></tr></table></a><![endif]--></li>




<li class="istylei0"><a class="istylei0" href="#"><span>About WestNet Wireless</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:178px;">
		<li><a href="http://www.westnet.ca/timeline.htm">Timeline</a></li>
		<li><a href="http://www.westnet.ca/contact.htm">Contact</a></li>
		<li><a href="http://www.westnet.ca/vendor.htm">Evaluate Your Product/Solutions</a></li>
	<li><a href="http://www.westnet.ca/energy.htm">WestNet Energy</a></li>
		<li><a href="http://www.westnet.ca/health.htm">WestNet Health Services</a></li>
	
		<li><a href="http://www.westnet.ca/financialinsurance.htm">WestNet Financial & Insurance</a></li>
	</ul>
	<!--[if lte IE 6]></td></tr></table></a><![endif]--></li>

<li class="istylei0"><a class="istylei0" href="#" title="sdf"><span>Jobs & Internal</span><![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
	<ul class="istylem0" style="width:170px;">
		
		<li><a href="http://www.westnet.ca/jobs.htm">Jobs</a></li>

		<li><a href="http://www.westnet.ca/spectrum-operations.htm">Spectrum Operations</a></li>
		<li><a href="http://www.westnet.ca/property.htm">Commercial Property Inquires</a></li>
		<li><a href="http://www.westnet.ca/vehicle.htm">Vehicle Fleet Operation & Sales</a></li>
		<li><a href="http://www.westnet.ca/contract-offerings.htm">Contract Offerings</a></li>

</ul>

</ul>



<BR>






<H3>Terms of Use</H3>








   






   <body>

	
		<p><b>Wi-Fi Access Terms of Use</b><br>
		&nbsp;<br>
		This agreement sets out the terms and conditions on which wireless 
		internet access (&quot;the Service&quot;) is provided free of charge or for a 
		nominal fee]1 to you, the end user of WestNet City Wi-Fi (&quot;us&quot;) in 
		consideration for your custom, your agreement to these terms and 
		conditions and your agreement to allow us to send to you by e-mail our 
		promotional and marketing material. WestNet City Wi-Fi provides public 
		Wi-Fi within the city of Calgary, Alberta. You, the end user, must 
		adhere that WestNet City Wi-Fi is not owned or operated by any local, 
		provincial or federal government. You, the end user must not hold the 
		City of Calgary or the jurisdiction you are using the Wi-Fi service 
		within, liable for any damages that arise from using the Wi-Fi service.
		<br>
		&nbsp;<br>
		<b>1. &nbsp;Extent of the Service</b><br>
		&nbsp;<br>
		1.1 We do not recommend in particular the use of any websites (or other 
		internet related services) (&quot;Internet Services&quot;) and your use of 
		Internet Services is carried out entirely at your own risk. It is your 
		responsibility to ensure your own safety while operating using an 
		electronic device while taking necessary caution when crossing a street, 
		intersection, light rail transit platform or entering a motor vehicle, 
		passenger bus, aircraft, vessel or any object which may cause you, the 
		end user, harm. <br>
		&nbsp;<br>
		1.2 We have no responsibility for, or control over, the Internet 
		Services you access and do not guarantee that any services are error or 
		virus free. As with most other Public Wi-Fi services, the connection 
		between your device and the access point is not encrypted. It is you, 
		the end user, take responsibility to exercise caution when transmitting 
		sensitive data such as financial or personal information. Websites such 
		as banking should always begin in https to ensure an encrypted session 
		via Secured Socket Layer technology. <br>
		&nbsp;<br>
		1.3 We have no responsibility for, or control over, the information you 
		transmit or receive via the Service.<br>
		&nbsp;<br>
		1.4 Save for the purposes of network diagnostics we do not examine the 
		use to which you put the Service or the nature of the information you 
		send or receive.2<br>
		&nbsp;<br>
		1.5 &nbsp;We do not guarantee:<br>
		&nbsp;<br>
		1.5.1 the availability of the Service;<br>
		1.5.2 the speed at which information may be transmitted or received via 
		the Service; or<br>
		1.5.3 that the Service will be compatible with your equipment or any 
		software which you use.<br>
		&nbsp;<br>
		1.6 [Whilst we take reasonable steps to ensure the security of the 
		Service and to prevent unlawful access to information transmitted or 
		received using the Service] we do not guarantee the security of the 
		information which you may transmit or receive using the Service or 
		located on any equipment utilizing the Service and you accept that it is 
		your responsibility to protect your information and have adequate 
		security (in terms of equipment and procedures) to ensure the security, 
		integrity and confidentiality of your information and data.<br>
		&nbsp;<br>
		1.7 We reserve the right at all times to withdraw the Service, change 
		the specifications or manner of use of the Service, to change access 
		codes, usernames, passwords or other security information necessary to 
		access the service.<br>
		&nbsp;<br>
		<b>2. &nbsp;Your Use of the Service</b><br>
		&nbsp;<br>
		2.1 You must not use the Service to access Internet Services, or send or 
		receive e-mails, which:<br>
		2.1.1 are defamatory, threatening, intimidatory or which could be 
		classed as harassment;<br>
		2.1.2 contain obscene, profane or abusive language or material;<br>
		&nbsp;<br>
		1 If separate charges are being levied other considerations may apply. 
		WestNet City Wi-Fi also operates a paid service. <br>
		2 Civil and criminal liability can arise from monitoring content or 
		interception of e-mails and extreme care should be taken to ensure that 
		this does not happen.<br>
		<br>
		<br>
		&nbsp;<br>
		2.1.3 contain pornographic material (that is text, pictures, films, 
		video clips of a sexually explicit or arousing nature);<br>
		2.1.4 contain &nbsp;offensive &nbsp;or &nbsp;derogatory images regarding &nbsp;sex, &nbsp;race, 
		&nbsp;religion, &nbsp;color, origin, age, physical or mental disability, medical 
		condition or sexual orientation;<br>
		2.1.5 contain material which infringe third party's rights (including 
		intellectual property<br>
		rights);<br>
		2.1.6 in our reasonable opinion may adversely affect the manner in which 
		we carry out our business; or<br>
		2.1.7 are otherwise unlawful or inappropriate;<br>
		&nbsp;<br>
		2.2 Music, video, pictures, text and other content on the internet are 
		copyright works and you should not download, alter, e-mail or otherwise 
		use such content unless certain that the owner of such works has 
		authorized its use by you.<br>
		&nbsp;<br>
		2.3 We may terminate or temporarily suspend the Service if we reasonably 
		believe that you are in breach of any provisions of this agreement 
		including but not limited to clauses 2.1 to 2.3 above.<br>
		&nbsp;<br>
		2.4 We recommend that you do not use the service to transmit or receive 
		any confidential information or data and should you choose to do so you 
		do so at your own risk.<br>
		&nbsp;<br>
		2.5 The Service is intended for consumer use only. In the event that you 
		use the Service for commercial purposes we would specifically refer you 
		to clause 5.2 below.<br>
		&nbsp;<br>
		<b>3. Criminal Activity</b><br>
		&nbsp;<br>
		3.1 You must not use the Service to engage in any activity which 
		constitutes or is capable of constituting a criminal offence, either in 
		Canada or in any state throughout the world.<br>
		&nbsp;<br>
		3.2 You &nbsp;agree &nbsp;and &nbsp;acknowledge &nbsp;that &nbsp;we &nbsp;may &nbsp;be &nbsp;required &nbsp;to 
		&nbsp;provide &nbsp;assistance &nbsp;and information to law enforcement, governmental 
		agencies and other authorities.<br>
		&nbsp;<br>
		3.3 You agree and acknowledge that we may keep a log of the Internet 
		Protocol (&quot;IP&quot;) addresses of any devices which access the Service, the 
		times when they have accessed the Service and the activity associated 
		with that IP address<br>
		&nbsp;<br>
		3.4 You further agree we are entitled to co-operate with law enforcement 
		authorities and rights-holders in the investigation of any suspected or 
		alleged illegal activity by you which may include, but is not limited 
		to, disclosure of such information as we have (whether pursuant to 
		clause 3.3 or otherwise), and are entitled to provide by law, to law 
		enforcement authorities or rights-holders.<br>
		&nbsp;<br>
		&nbsp;<br>
		&nbsp;<br>
		<b>4. Our Use of your Information</b><br>
		&nbsp;<br>
		4.1 Subject to clauses 3.3 and 3.4 above we confirm that we shall use 
		the contact details you provide to us solely for the purposes of 
		contacting you with marketing information, updates, promotions and 
		special offers relating to our business.3<br>
		&nbsp;<br>
		3 It is important to ensure that this clause is complied with (or 
		amended depending on how the data is used) and Data you collect is 
		processed in accordance with The Privacy Act 1980 and any mailings 
		comply with the Personal Information Protection and Electronic Documents 
		Act (S.C. 2000, c. 5)<br>
		<br>
		<br>
		&nbsp;<br>
		&nbsp;<br>
		<b>5. Other Terms</b><br>
		&nbsp;<br>
		5.1 You agree to compensate us fully for any claims or legal action 
		&nbsp;made or threatened against us by someone else because you have used the 
		service in breach of these terms and conditions, and in particular 
		clause 2.1 to 2.3 and 3.1 above.<br>
		&nbsp;<br>
		5.2 Whilst we do not seek to limit our responsibility for fraudulent 
		misrepresentation or if you are injured or die as a result of our 
		negligence we have no &nbsp;responsibility (to the extent permitted by law) 
		to compensate you (whether or not we are negligent) for any direct 
		financial loss, loss of profit, revenue, time, anticipated savings or 
		profit or revenue, opportunity, data, use, business, wasted expenditure, 
		business interruption, loss arising from disclosure of confidential 
		information, loss arising from or in connection with use of the service 
		or inability to use or access the service or a failure, suspension or 
		withdrawal of all or part of the service at any time or damage to 
		physical property or for any other similar direct loss that may arise in 
		relation to this agreement whether or not we were advised in advance of 
		the possibility of such loss or damage.<br>
		&nbsp;<br>
		5.3 We agree that neither this agreement does not allow either party to 
		act as, or hold themselves out as, acting as an agent of the other party 
		and that that the terms of this agreement are not enforceable by a third 
		party under the Contracts.<br>
		<br>
		5.4 You, the end user, must adhere that WestNet City Wi-Fi is not owned 
		or operated by any local, provincial or federal government. <br>
		&nbsp;<br>
		5.5 This agreement is governed by the law of Canada and is subject to 
		the non- exclusive jurisdiction of the Canadian court system.<br>
&nbsp;</p>

	
		</div>&nbsp;<p>Contact us at
    <a href="mailto:info@westnet.ca">info@westnet.ca</a> or we may be reached by telephone, <b>403-774-7470</b>
<BR><BR>
For Administrative Info:
    <a href="mailto:admin@westnet.ca">admin@westnet.ca</a> or telephone <b>403-774-7470 option number 2</b>

<BR>

<BR>
<br>
Write to us at:<br>
WestNet<br>
P.O. BOX 23095<br>
Calgary, AB T2S 3B1<br>

	</p>

</body>





<p align="left">
<a href="https://twitter.com/westnetwireless"><img src="//www.westnet.ca/images/twitter.jpg" align="left"></a> <a href="http://www.facebook.com/WestNet"><img src="//www.westnet.ca/images/facebook.jpg" align="left"></a>
</p>
<BR>


<img src="//www.westnet.ca/corporate_images/wnl25.gif" alt="wpe6.jpg (1304 bytes)" align="left">

<img src='//www.westnet.ca/corporate_images/verizon-630x414.jpg' width='75' align="left">
<P>
<font face="Verdana"><small>Copyright 1996-2018 WestNet Communications Ltd.
</P>
<p>Part of the Verizon Global Network
<a href="mailto:support@westnet.ca">General Info</a>


</small></font> </p>



</div>



</body>
</html>





