var reviewRooms = function() {
	var ccdUris = ["betfair-bonus","victor-chandler","everest-bonus","hollywood-bonus","smartlive","888-poker","redkings-poker","unibet-poker","bwin-bonus","luckyace-poker","paddy-power-poker","wsop-poker","poker848","redbet"];
	var win;
	function showWindow(url) {
		win = new modalWindow(480, 470);
		win.openURL('/rooms/instructions.php?url=' + encodeURIComponent(url));
	}
	return {
		cookieClrDependent: function(url) {
			var re = new RegExp('//[^/]+/([^/]+)/');
			url = url.match(re);
			if (typeof url[1] != 'undefined' && jQuery.inArray(url[1], ccdUris) != -1) {
				return true;
			}
			return false;
		},
		showInstructions : function(url) {
			if (typeof modalWindow == 'undefined') {
				$.ajax({
					type: "GET",
					url: '/js/modal.window.js',
					dataType: "script",
					cache: true,
					success: function() {
						showWindow(url);
					}
				});
			} else {
				showWindow(url);
			}
		},
		hideInstructions : function() {
			win.close();
		}
	};
}();
