
	/* 	************************************************************************************************ 
								GLOBAL VARIABLES.   
		************************************************************************************************ */

	/* 	This is the domain name or ip address of the newzware server (where authentication actually takes place. */
	var newzware_server = "www.trsubscribe.com";

	/* 	This is the https url of the redirect to the newzware server (From the login page submit form) .*/
	var https_redirect_url = "http://www2.timesreview.com/nw_auth_html/NR/redirect.html";

	/* 	This is the url of the page that contains the beginning of the protected online content. 
	The start of the web access to the rest of the web site. */
	var welcomePage = "http://www2.timesreview.com/NR/";

	/* 	This is the url of the page that the newzware server will send its request to after the 
		login and password have been authenticated.*/
	var authenticatedURL = "http://www2.timesreview.com/nw_auth_html/NR/authenticated.html";

	/* 	This is the url of the page that you want the user to see if the login and password are incorrect. */
	var failedURL =  "http://www2.timesreview.com/nw_auth_html/NR/failed_login.html";

	/* 	This is the name of the cookie to be set.  The cookie is identified by this string.  */
	var cookieName = "nwauth";  

	/* 	This is the value of the cookie to be set. The value that is returned from the cookieName. */
	var cookieValue = "ok";  

	/* 	This amount of days the cookie will expire. 0 means that the cookie will expire when the browser is closed. */
	var days = 1;  

	/* 	This is the path setting for the cookie. Only cookies that are in this correct path will be seen by the browser. 
		Set to / to get all cookies in the domain. Do not change this unless you know cookie behaviour. */
	var path = "/";  

	/* 	This is the domain for the cookie. */
	var domain = "timesreview.com";  

	/* 	Transmit over a secure network. Not supported */
	var secure = null;  

