\n');
}
//-->
// AJAX functions:
function createRequestObject() {
var ro;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
ro = new ActiveXObject("Microsoft.XMLHTTP");
}else{
ro = new XMLHttpRequest();
}
return ro;
}
var http = createRequestObject();
function sndReq(page) {
http.open('get', 'content.php?page='+page);
http.onreadystatechange = handleResponse;
http.send(null);
}
function handleResponse() {
if(http.readyState == 4){
var response = http.responseText;
var update = new Array();
if(response.indexOf ('|' != -1)) {
update = response.split('|');
document.getElementById(update[0]).innerHTML = update[1];
}
}
}
// alternatively to AJAX, submit an invisible form to go to another page
function gopage(whichPage)
{
document.redirect_form.p.value=whichPage;
document.redirect_form.submit();
}
function gourl(whichPage)
{
window.location = whichPage;
}
// write in statusbar
function stat_write(yourtext)
{
window.status=yourtext;
}
/// Show & hide layers
function toggleLayer(whichLayer)
{
if (document.getElementById)
{
// this is the way the standards work
var style2 = document.getElementById(whichLayer).style;
style2.display = style2.display? "":"block";
}
else if (document.all)
{
// this is the way old msie versions work
var style2 = document.all[whichLayer].style;
style2.display = style2.display? "":"block";
}
else if (document.layers)
{
// this is the way nn4 works
var style2 = document.layers[whichLayer].style;
style2.display = style2.display? "":"block";
}
}
|
|
|
n-Tegrity PERSONAL DATA MANAGERS
Fingerprint USB Drives with Software |
| 1 GB | $84.00 CAD |
 | 2 GB | $94.00 CAD |  | 4 GB | $196.00 CAD |  | 2GB VOIP | $204.00 CAD | | VISIT www.n-tegrity.ca |
|
|
Copyright© 2006 n-Tegrity Canada. All rights reserved.