var popupWin;
			function popup(url,name,w,h,s,t) {
				
				w = (w) ? 'width=' + w : '';
				h = (h) ? ',height=' + h : '';
				s = (s) ? ',scrollbars=' + s : '';
				t = (t) ? ',status=' + t : '';
				var left = ",left=" + ((screen.width/2)-230);
				var top = ",top=" + ((screen.height/2)-200);
				var args = w + h + s + t + left + top + ',menubar=0';
				
				if(navigator.userAgent.indexOf("MSIE") > -1)
				{
					if(popupWin != null)
						popupWin.close();
				}
				
				popupWin = window.open(url,name,args);
				
				return false;
			}
			
			function showLogon(sPage)
			{
				var qStr = "&siteId=";
				
				if(sPage.indexOf("Policies")>1)
					qStr = qStr + "&noTabs=true"
				
				return popup(sPage + '?' + qStr,'popup',615,535,0,0)	
			}
			
			function subscribe()
			{
				var qStr = "&siteId=";
				
				var page = "/profile/viewMyProfile.do";
				
				return popup(page + '?' + qStr,'popup',615,535,0,0)	
			}
			function emailAFriend()
			{
				var url = '/email/mailAFriend.do?sectionName=home&subject=' + window.document.title;
				url = url + '&urlContent=http%3A%2F%2Fwww.theredlabel.com.au%2Fsubscribe%2Fhome.do';
				
				return popup(url,'EmailtoaFriend',470,370,0,0);
			}