﻿function ShowNails(_Int){
	var img = document.getElementById("Nailing");
	if(Number(_Int)==Number(1)){
		img.src = 'img/Nailing1.png';
	} else {
		img.src = 'img/Nailing2.png';
	}
}
function BlockerCheck(_Window, _Focus) {
	var exists = false;
    if (_Window && !_Window.closed) {
        exists = true;
        try { 
			_Window.focus();
        } catch (e) {
            _Focus = false;
            exists = false;
        }
        if (!_Focus) { window.focus();}
    }
    if (!exists) { 
		alert('The Earthbound System detected a popup blocker preventing access to the page. Please allow access to our system to see additional content.\nThank you.'); 
    } else {
		_Window.focus();
    }
}
function PagePopup(pg, bar) {
	alert(pg);
	var h = screen.height / 1.3;
	var w = screen.width / 1.3;
	var y = (h / 8);
	var x = (w / 8);
	var pos = (document.layers) ? ',screenX=' + x + ',screenY=' + y : ',left=' + x + ',top=' + y;
	var param = "width=" + w;
	param += (",height=" + h);
	if (bar) {
		param += ",scrollbars=1,toolbar=1,status=1,menubar=1,links=1,resizable=1";
	} else {
		param += ",scrollbars=1,toolbar=0,status=0,menubar=0,links=0,resizable=0";
	}
	var win = window.open(pg, '', param + pos);
	win.focus();
}
function disclaimer() {
	var msg = "Notice: By clicking this link, you will be downloading information from a web site that Earthbound Corp. does not maintain.";
	alert(msg);
}
