	function getCookie(Name) {
		var search = Name + "=";

		if (document.cookie.length > 0) {
			offset = document.cookie.indexOf(search);

			if (offset != -1) {
				offset += search.length;
				end = document.cookie.indexOf(";", offset);

				if (end == -1) end = document.cookie.length;
				return unescape(document.cookie.substring(offset, end));
			} else return false;
		} else return false;
	}

	function openBrWindow() {
		var myCookie = getCookie('event_oct2011');
		var startDate = new Date('2011/10/10');
		var endDate = new Date('2011/11/10');

		var todayDate = new Date();
		
		if (startDate <= todayDate && todayDate <= endDate) {
			if (!myCookie) {
				window.open('/pages/pages/popup/popup.php','Popup','top=200, left=600, width=250, height=365, scrollbars=no,resizable=no');
			}
		}
	}
	jQuery(document).ready(openBrWindow());
