		<!-- hide this script from non-javascript-enabled browsers
		var cookie = "sapscene_mag";
		function magoffer(){
		 if (getcookie(cookie)==""){
		  openpopup();
		  setcookie();
		 }
		}
		
		function openpopup(){
		 window.alert("Make sure you take a look at the free magazine offer\n available through banner at the top of this page.")
		}
		
		function getcookie(cookieName) {
		 var id = cookieName + "=";
		 var cookievalue = "";
		 if (document.cookie.length > 0) {
		  offset = document.cookie.indexOf(id);
		  if (offset != -1) {
		   cookievalue = "x";
		  }
		 }
		 return cookievalue;
		}
		
		function setcookie () {
		 var fiveYears = 30 * 24 * 60 * 60 * 1000;
		 var expDate = new Date();
		 expDate.setTime (expDate.getTime() + fiveYears);
		 document.cookie = cookie + "=done; expires=" +expDate.toGMTString();
		}
		// - stop hiding -->
