const TIP_X_OFFSET = 45, TIP_Y_OFFSET = 50, FLIPPER = 400

//var screen_height, screen_width
const tip = document.createElement('div')
tip.id = 'tooltip'
tip.setAttribute('style', 'display: none; position:fixed; border:1px solid #AAA;')
tip.style.backgroundColor = '#F0F0F0'
tip.innerHTML = '<table><tr><td style="padding: 10px" id="tipcell"></td></tr></table>'
const bwtd = tip.getElementsByTagName('td')[0]
document.body.appendChild(tip)

function ttip(){
	tip.style.top="130px";
	tip.style.left="100px";
	tip.style.display="";
	td = bwtd;
	text="You don't need this if you<br>downloaded the game from this site.";
	td.innerHTML=text;

}
function hideTip(){
	tip.style.display="none";
}
