﻿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 PUMgr(_Name) {
	var url = _Name + '.aspx?m=0';
	var feature = 'height=600,width=800,scrollbars=yes,resizable=yes'
	BlockerCheck(window.open(url, _Name, feature)); 
}