﻿/* INITIALIZE */
$(document).ready(function(){
	$('.facts dt').click(function(){
		var _thisId = '#' + this.id;
		$($(_thisId + ' + dd')[0]).toggle();
	});
	$('#frLink').click(function(){
		$('#refList').toggle();
	});
});


function launchGame(path)
{
	var w = 600, h = 350;
	var left, top;
	
	left = (screen.width - w)/2;
	top = (screen.height- h)/2;
	
	var features = 'status=0, toolbar=0, resizable=0, scrollbars=0, width=' + w + ', height=' + h + ', left=' + left + ', top=' + top + ';';
	window.open(path, '', features);
}

