


/**
 * window.onblur = function closeWindow()
 *
 * Used to close the popup when te window
 * loses its's focus
 *
 * @returns (Boolean) true
 */
window.onblur = function closeWindow() {

	//return false;

}; // End of Function




function reloadParent(_parent) {

	var _object = _parent.document.getElementById('numberOff');
	_object = (!_object) ? _parent.parent.document.getElementById('numberOff') : _object;
	_object.innerHTML = 0;

} // End of Function

