function openGame()
{
	var w = 600;
	var h = 450;
	leftpos = (screen.width) ? (screen.width-w)/2 : 0;
	toppos = (screen.height) ? (screen.height-h)/2 : 0;
	var win = window.open('games/carparking.html', 'DRIVETOGETHER', 'left='+leftpos+',top='+toppos+',width='+w+',height='+h+',toolbar=0,resizable=0');
	return false; /* necessary, don't ask me */
}
