// Boss button
function bossOver(el)
{
	boss = document.getElementById(el);
	
	boss.style.marginTop = '0px';
}

// Boss button
function bossOut(el)
{
	boss = document.getElementById(el);
	
	boss.style.marginTop = '-50px';
}

// Show spreadsheet
function showSpreadsheet()
{
	// Get width and height of users screen
	viewportWidth = document.documentElement.clientWidth;
	viewportHeight = document.documentElement.clientHeight;
	
	window.open('spreadSheet.html', '', 'fullscreen=yes, scrollbars=no');

}

function playGame(url)
{

	document.location.href = url;

}

