



// ================================================== §
//
// FlipItWin
// Vidiemme Consulting
// mauro.balestriero@gmail.com
//
// ==================================================





// --------------------------------------------------
function showLoading(){
// --------------------------------------------------
	document.body.style.cursor = 'wait';
	document.getElementById('loading').style.display = 'block';
};




// --------------------------------------------------
function hideLoading(){
// --------------------------------------------------
	document.body.style.cursor = '';
	document.getElementById('loading').style.display = 'none';
};



// --------------------------------------------------
function resetSub(){
// --------------------------------------------------
	document.getElementById("subContainerId").innerHTML = '';
	// document.getElementById("subContainerId").style.display = 'none';
	document.getElementById("mainContainerId").style.display = 'block';
}
