| Server IP : 209.205.66.10 / Your IP : 216.73.216.173 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ammon 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : ( 1006) PHP Version : 8.5.8 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home/bissett/nox/ |
Upload File : |
<html><head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<meta name="author" content="Flux User" >
<meta name="description" content="My Website" >
<meta name="keywords" content="Flux, Mac" >
<link href="main.css" rel="stylesheet" media="screen" type="text/css" >
<title>NOX SECURITY</title>
<style>
body {
background-image:url(images/noxbg.png);
background-repeat-x:repeat;
background-repeat-y:repeat;
background-repeat:repeat;
}
a:link {
color:#FFFFFF;
text-decoration:none;
}
a:visited {
color:#FFFFFF;
text-decoration:none;
}
a:hover {
color:#FF0000;
text-decoration:none;
}
a:active {
color:#FFFFFF;
text-decoration:none;
}
</style>
<script type="text/javascript" src="Libraries/jqueryui/js/jquery-1.4.2.min.js" ></script>
<script type="text/javascript" src="Libraries/jqueryui/js/jquery-ui-1.8rc3.custom.min.js" ></script>
<link rel="stylesheet" href="Libraries/jqueryui/css/ui-darkness/jquery-ui-1.8rc3.custom.css" type="text/css" >
<script type="text/javascript" >
$(function() {
$("#accordian1").accordion({
collapsible: true,
autoHeight: false,
});
});
</script>
<script type="text/javascript" >
// Test whether the user has cookies enabled by setting a cookie
// and then trying to retrieve it back. If a "true" argument is passed
// then this function attempts to test whether persistant cookies
// (i.e. non session cookies) are enabled.
function testClientCookies() {
var testPersistant = false;
if (arguments.length > 0) testPersistant = arguments[0];
if (testPersistant) {
// save a new cookies with an expiration date set to 5 seconds from now
var now = new Date();
var cookiedate = new Date(now.valueOf() + 1000*5);
document.cookie = "cookieTest=persist;expires=" + cookiedate.toGMTString();
}
else {
// save a session cookie (no expiration specified = lives for the
// lifetime of the browser) so that we check for any kind of cookies
document.cookie = "cookieTest=session"
}
if ((document.cookie).indexOf("cookieTest") == -1)
{
// cookie not found; all cookies must be disabled
return false;
}
else
{
return true;
}
} // testClientCookies
// function of client-side check(s) that are made when the user tries to log in
function doLoginTimeChecks() {
// test if Session-cookies (at least) are enabled
if (testClientCookies()) {
document.forms['loginForm'].cookieTest.value = '1';
}
// we cannot test if JavaScript is enabled (because the test itself would
// have to be written in JavaScript) but we can set a variable that will
// be looked at by login.asp when the user submits the form
document.forms['loginForm'].JavaScriptTest.value = '1';
var loginbox = document.getElementById('login');
var chkremember = document.getElementById('rememberMe');
if ((loginbox != null) && (chkremember != null))
{
var theDate = new Date();
if (document.forms['loginForm'].rememberMe.checked == true)
{
// set cookie expires 3 months later
var threeMonthsLater = new Date( theDate.getTime() + 7776000000 );
var expiryDate = threeMonthsLater.toGMTString();
document.cookie = 'login=' + loginbox.value + '; expires=' + expiryDate;
}
else
{
var passDate = new Date( theDate.getTime() - 7776000000 );
var expiryDate2 = passDate.toGMTString();
document.cookie = 'login=' + loginbox.value + '; expires=' + expiryDate2;
}
}
return true;
}
// Cookie reader
function readCookie(name)
{
var cookieValue = "";
var search = name + "=";
if(document.cookie.length > 0)
{
offset = document.cookie.indexOf(search);
if (offset != -1)
{
offset += search.length;
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
cookieValue = unescape(document.cookie.substring(offset, end))
}
}
return cookieValue;
}
// Querystring reader
function getQuerystring(key, default_)
{
if (default_==null) default_="";
key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
var qs = regex.exec(window.location.href);
if(qs == null)
return default_;
else
return qs[1];
}
// If you use "Remember Me" checkbox along with login / password, this section is needed.
// This function will be called
//
function rememberMeClick() {
if (document.forms['loginForm'].rememberMe.checked == true) {
// first check if cookies are enabled at all so that we don't
// inaccurately claim that "only session cookies are enabled"
if (!testClientCookies) {
window.location = '/yourloginpagehere.xxx?m=cookies_off&browser=' + browserCode;
return;
}
// check for non-session cookie (pass true as argument)
if (!testClientCookies(true)) {
alert('In order to take advantage of Alarm.com\'s "Remember My Login" feature, you must allow cookies to be stored on your computer. Visit the Alarm.com FAQ for more information.');
document.forms['loginForm'].rememberMe.checked = false;
}
}
}
// If you use "Remember Me" checkbox along with login / password, this section is needed.
// This function will be called
//
function LoadRememberedLoginName()
{
var login = ''
login = readCookie('login')
if (login != '')
{
var loginbox = document.getElementById('login')
if (loginbox != null)
{
loginbox.value = login;
}
var chkRemember = document.getElementById('rememberMe')
if (chkRemember != null)
{
chkRemember.checked = true;
}
}
}
//
// Error message
//
// !! You can customize your own error message here.
//
function showAlarmLoginMessage()
{
var Qm = getQuerystring("m");
if (Qm == null) return;
var msg, errorReason;
msg = "";
switch(Qm)
{
case "bad_permission":
msg = "I'm sorry, you tried to reach a page or an object that you do not have permission to access. If you reached this page via a bookmark, please delete your bookmark, navigate to the page that you are trying to reach, and then re-bookmark the page. If you reached this page by manually typing in a URL, you may have entered an incorrect number or the number may have changed in our records. We encourage users to use the Alarm.com site links rather than typing in URLs for this reason."
break;
case "cookies_off":
msg = "It appears that cookies are not enabled on your computer. Although Alarm.com does not store any personal information on your computer, your browser must have cookies enabled in order to maintain your secured identity while you are logged in."
break;
case "logout":
msg = "You have successfully logged out."
break;
case "no_session":
msg = "I'm sorry, your session has automatically timed out as a security precaution - please log in again."
break;
case "scripting_off":
msg = "It appears that your browser's current security settings prevent JavaScript from working correctly. Alarm.com uses JavaScript to add functionality to our web pages and make them easier to use."
break;
case "sensors_cmd_sent":
msg = "A request has been sent to your system to retrieve an up-to-date sensor list. It may take up to 2-3 minutes for this process to be completed. After a few moments, please try to log in again."
break;
case "web_error":
msg = "I'm sorry, an unexpected error occurred while processing the page you requested. As a security precaution you have been automatically logged out. If the problem persists after you log back into the site, please contact us for help in resolving this problem."
break;
case "login_fail":
errorReason = getQuerystring("r")
if (errorReason == "lockout")
{
msg = "As a security precaution your account has been locked out due to too many incorrect password attempts. To unlock your account, please request a new password by filling out the 'Forgot your password' form <A href='https://www.alarm.com/forgot_logininfo.asp'>here."
}
else if (errorReason == "terminated")
{
msg = "Your account has been terminated. If you believe this to be in error, or if you would like to re-activate your account, please contact us."
}
else if (errorReason == "no_panel")
{
msg = "Your control panel has not communicated with Alarm.com. Please make sure your control panel is powered on then try again. If you are still having trouble, please contact us."
}
else if (errorReason == "error")
{
msg = "We're sorry, your account is currently unavailable. A message has automatically been sent to Technical Support to address this issue. We will contact you when the issue has been resolved. "
}
else if (errorReason == "custom")
{
msg = getQuerystring("cm")
}
else if (errorReason == "no_match")
{
msg = "I'm sorry, the login and/or password you entered were not correct. If you have forgotten your login or password, please contact us."
}
break;
default:
break;
}
var divMsg = document.getElementById("divAlarmMessage");
if (divMsg != null)
{
divMsg.innerHTML = msg
}
}
</script>
</head>
<body style="width:100%; height:auto; position:relative; float:none; margin-left:auto; margin-right:auto; display:block; " >
<div style="width:1120px; position:relative; float:none; margin-left:auto; margin-right:auto; display:block; " flux:locked="true" >
<div id="accordian1" style="top:220px; position:absolute; left:0; width:900px; float:none; margin-left:auto; margin-right:auto; display:block; " flux:locked="true" >
<h3><a href="#" >NOX Residential Security Packages</a></h3>
<div>
<p><img src="images/NOX sales.jpg" alt="" style="width:100%; -webkit-border-bottom-left-radius:30px; border-bottom-left-radius:30px; -o-border-bottom-left-radius:30px; -ms-border-bottom-left-radius:30px; -moz-border-radius-bottomleft:30px; -webkit-border-bottom-right-radius:30px; border-bottom-right-radius:30px; -o-border-bottom-right-radius:30px; -ms-border-bottom-right-radius:30px; -moz-border-radius-bottomright:30px; -webkit-border-top-left-radius:30px; border-top-left-radius:30px; -o-border-top-left-radius:30px; -ms-border-top-left-radius:30px; -moz-border-radius-topleft:30px; -webkit-border-top-right-radius:30px; border-top-right-radius:30px; -o-border-top-right-radius:30px; -ms-border-top-right-radius:30px; -moz-border-radius-topright:30px; " ></p>
</div>
<h3><a href="#" >Submit A Request For A Quote</a></h3>
<div>
<form name="myform" action="http://www.noxsecurity.com:8080/servlet/noxsecurity" method="Post" >
<input type="hidden" name="subject" value="noxsecurity Order Form" />
<input type="hidden" name="eMailAddress" value="nox@noxsecurity.com" />
<input type="hidden" name="nextURL" value="http://www.noxsecurity.com" />
<h4>NOTE: * Asterisk Denotes Required Fields</h4>
<input name="name" type="text" size="50" maxlength="50" onchange="makeusername()" /> Company Name
<br><input name="*contact" size="50" maxlength="50" value="" /> * Contact Name
<br><input name="street" size="50" maxlength="50" value="" /> St. / Ave. / Rd.
<br><input name="city" size="40" maxlength="40" value="" /> City
<br><input name="prov" size="40" maxlength="40" value="" /> Province / State
<br><input name="country" size="40" maxlength="40" value="" /> Country
<br><input name="*pcode" size="25" maxlength="25" value="" /> * Postal Code / Zip Code
<br><input name="homephone" size="25" maxlength="25" value="" /> Home Phone (include area code)
<br><input name="workphone" size="25" maxlength="25" value="" /> Work Phone (include area code)
<br><input name="cell" size="25" maxlength="25" value="" /> Cell Phone (include area code)
<br><input name="fax" size="25" maxlength="25" value="" /> Fax (include area code)
<br><input name="*fromAddress" size="50" maxlength="50" value="" /> * email
<br><br>
<hr align="left" width="95%" color="BBBBDD" />
<h4>Residential Security Packages (choose one of the following):</h4>
<input name="subscription" type="radio" value="General" />GENERAL INFORMATION
<br><input name="subscription" type="radio" value="Digi NOX" />DIGI NOX + INSTALLATION
<br><input name="subscription" type="radio" value="Two-Way Voice" />TWO-WAY VOICE + INSTALLATION
<br><input name="subscription" type="radio" value="NOX Pro" />NOX PRO + INSTALLATION
<br><input name="subscription" type="radio" value="NOX Pro Two-Way Voice" />NOX PRO TWO-WAY VOICE + INSTALLATION
<br><input name="subscription" type="radio" value="NOX Home" />NOX HOME + INSTALLATION
<p>NOTE: Installation & Taxes (if applicable) will be calculated and added to your quote. </p>
<center>
<p><input type="submit" value="- SUBMIT REQUEST -" />
</p></center>
</form>
</div>
<h3><a href="#" >Anatomy of the Smart Home</a></h3>
<div>
<center><iframe width="560" height="315" src="https://www.youtube.com/embed/ltXcCGwumpI" frameborder="0" allowfullscreen="" ></iframe>
</center></div>
<h3><a href="#" >XTi Demo</a></h3>
<div>
<center><iframe height="700px" width="820px" src="http://www.interlogix.com/simonxti_demo/" ></iframe></center>
</div>
<h3><a href="#" >Customer Login</a></h3>
<div>
<form action="https://www.alarm.com/login.asp" method="POST" name="loginForm" onsubmit="javascript:doLoginTimeChecks();" >
<input type="hidden" name="JavaScriptTest" value="" />
<input type="hidden" name="cookieTest" value="" />
<input type="hidden" name="loginFolder" value="http://url_redirect_after_logout" />
<div id="divAlarmMessage" style="color:#FF0000; " >
</div>
<script language="javascript" >
showAlarmLoginMessage()
</script>
Login: <input type="text" size="15" name="login" id="login" />
Password: <input type="password" size="15" name="password" id="password" />
<!-- Remember Me (Optional) -->
<br>
<input type="checkbox" name="rememberMe" id="rememberMe" onclick="javascript:rememberMeClick()" />Remember My Login
<br>
<script language="javascript" >
LoadRememberedLoginName()
</script>
<!-- End of Remember Me -->
<input type="submit" value="Login" />
</form>
</div>
<h3><a href="#" >Things You Need To Know</a></h3>
<div>
<p>
NOX Security concentrates on the four most important aspects of home protection.
</p>
<ul>
<li><p>BURGLARY: Statistics Canada reports that the nature and extent of robberies, as reported to police, has changed over the years. While commercial robberies have declined, residential robberies increased. Canadian police services reported about 32,000 incidents of robbery in 2008, and an increase of 38% between 1999 and 2005.</p>
<p>The vast majority of robberies were committed by young men. In 2008, almost 9 in 10 of those accused of robbery were male and nearly two-thirds were between the ages of 12 and 24.</p>
<p>Money is the most common item reported stolen (37% of all robberies), followed by personal accessories such as jewellery (18%). Electronic devices such as cell phones, personal music devices and computers, items that can often be sold for a quick profit, were next at 15%.</p>
<p>According to police, NOTHING HAS CHANGED! It isn't any safer and it's not likely to get safer. The only thing you can do is protect yourself before it happens to you.</p>
</li>
<li>FIRE</li>
<li><p>DANGEROUS GASES: Carbon monoxide is a lethal odourless invisible gas. Two deadly sources of carbon monoxide, which can kill you in your sleep, are defective furnaces and idling engines. Carbon monoxide detectors provide critical protection by alerting you to carbon monoxide and notifying our monitoring centre where life saving measures are immediately taken. Here a some quick facts about Carbon Monoxide:</p><ul>
<li>You can't taste, see or smell carbon monoxide, so a detector is the only way to alert you that levels are high.</li>
<li>Carbon monoxide reduces the body's ability to carry oxygen in the blood and exposure can cause headaches, fatigue, dizziness, chest pain, and at high levels, coma or death.</li>
<li>There were 380 accidental carbon monoxide poisoning deaths in Canada from 2000 to 2009 according to Statistics Canada.</li>
<li>Proper use and maintenance of fuel-burning appliances and other gas-powered equipment is key to keeping carbon monoxide levels in the home low.</li></ul><p></p>
<p>In 2013, Yukon passed a law requiring every home with a fuel-burning appliance or attached garage to have a carbon monoxide detector. Recently, Ontario passed a similar law, known formally as the Hawkins Gignac Act, named after a family of four who died in 2008 from carbon monoxide poisoning in their Woodstock, Ont., home. Are you going to wait until Alberta passes a law or are you going to avoid having their law named after you?</p>
</li><li>MONITORING</li>
</ul>
</div>
<h3><a href="#" >Employment Opportunities</a></h3>
<div>
<p>NOX Security is looking for people to fill the following positions:
</p><ul>
<li>Summer Sales</li>
<li>Full Time Sales</li>
<li>Installation Technicians (Training Available)</li>
</ul>
For more information Call: 403-995-9005 or Email: <a href="mailto:nox@noxsecurity.com" >nox@noxsecurity.com</a>
<p></p>
</div>
</div><img src="images/stations.png" alt="" style="position:absolute; left:940px; top:40px; float:none; margin-left:auto; margin-right:auto; display:block; width:180px; " flux:locked="true" ><img src="images/OWL icon (white).png" alt="" style="width:110px; top:40px; position:absolute; left:780px; float:none; margin-left:auto; margin-right:auto; display:block; " flux:locked="true" ><img src="images/nox sign 2.jpg" alt="" style="position:absolute; left:940px; top:800px; -webkit-border-bottom-left-radius:20px; border-bottom-left-radius:20px; -o-border-bottom-left-radius:20px; -ms-border-bottom-left-radius:20px; -moz-border-radius-bottomleft:20px; -webkit-border-bottom-right-radius:20px; border-bottom-right-radius:20px; -o-border-bottom-right-radius:20px; -ms-border-bottom-right-radius:20px; -moz-border-radius-bottomright:20px; -webkit-border-top-left-radius:20px; border-top-left-radius:20px; -o-border-top-left-radius:20px; -ms-border-top-left-radius:20px; -moz-border-radius-topleft:20px; -webkit-border-top-right-radius:20px; border-top-right-radius:20px; -o-border-top-right-radius:20px; -ms-border-top-right-radius:20px; -moz-border-radius-topright:20px; width:180px; " flux:locked="true" ><blockquote style="width:520px; height:100px; position:absolute; left:210px; top:-42px; color:#FFFEFD; font-size:80px; font-family:Baskerville; font-style:inherit; font-variant:inherit; font-weight:bolder; text-align:center; " flux:locked="true" >403.995.9005</blockquote><img src="images/NOX w:flag.png" alt="" style="width:220px; top:40px; position:absolute; left:0; box-shadow:rgb(255, 254, 253) 0px 0px 24px; " flux:locked="true" ><h4 style="position:absolute; left:250px; top:106px; width:490px; color:#FFFFFF; text-align:center; " >Proudly Serving Albertans</h4><img src="images/flag white.png" alt="" style="position:absolute; left:711px; top:138px; width:35px; " flux:locked="true" ><img src="images/underline.png" alt="" style="position:absolute; left:273px; top:159px; width:428px; height:3px; " flux:locked="true" ></div></body></html>