// JavaScript Document


addLoadEvent( 
	function() {
		if ( document.getElementById && document.getElementById('go') ) {
			document.getElementById('go').onclick = goGame;
		} 
	}
);

function goGame() {
	var url = document.getElementById('go').href;
	window.open( url, 'gameWindow', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=670,height=500');
	return false;
}



