// ***************************
// 6k chess
// custom functions go here
// ***************************

function printText(elem) { 
popup = window.open('','popup','toolbar=no,menubar=no,width=400,height=300'); 
popup.document.open(); 
popup.document.write("<html><head></head><body onload='print()'>"); 
popup.document.write(elem); 
popup.document.write("</body></html>"); 
popup.document.close(); 
} 


function about() {
	if(document.getElementById('tableAbout').style.display == 'block') {
		document.getElementById('tableAbout').style.display = 'none';
	}else{
		document.getElementById('tableAbout').style.display = 'block';
	}
};