function screenshotWindow(imageFile, title, windowWidth, windowHeight) {
	var url = "screenshot.php?image=" + imageFile + "&title=" + title;
	var name = "screenshot_" + title;
	var opts = "toolbar=0,menubar=0,scrollbars=1,status=0,resizable=1,dependent=0,width=" + String(windowWidth) + ",height=" + String(windowHeight);
	window.open(url, "screenshot", opts).focus();
	//window.open(url, title, opts).focus();
}

$(function() {
	$('#switchColors').click(function() {
		if ($('body').is('.black')) {
			$.cookie('color', 'white', { expires: 365 });
			$('body').removeClass('black');
		} else {
			$.cookie('color', 'black', { expires: 365 });
			$('body').addClass('black');
		}
	});
});