// xenu is returning and 404 n the empty file delete this call from the site

function rollover(id,src) { 
	var btnImage = document.getElementById(id);
	btnImage.src = btnImage.src.replace('_off','_over');
}

function rollout(id,src) { 
	var btnImage = document.getElementById(id);	
	btnImage.src = btnImage.src.replace('_over','_off');
}



/*
var notLeaving = false;
window.onload = function() {
    var e = document.getElementsByTagName("a");
    for (var i = 0; i < e.length; i++) {
        e[i].onclick = function() {
            checkUrl(this.href);
        }
    }
}
window.onunload = function() {
    pop();
}
function pop() {
	try {
    if (!notLeaving) {
			var loc = window.location.href;
			if(window.location.href.substring(0,5)!="https") { 
		        var win2 = window.open('http://www.puristat.com/7dayFTP.html', '7dayFTPPop', 'scrollbars=yes,width=750,height=470');		
				if(win2!=null) { 
		    	    win2.blur();
				}
        		window.focus();
			}
	    }
	}
	catch(E) { 
		
	}
}
function checkUrl(href) {
    notLeaving = (href.indexOf("puristat.com") > -1);
}
*/
