				var greet="Welcome.";
				var cartcount="0";
				var carttotal="$0.00";
				var custname = GetCookie('custname');
				if (custname != null && null!=custname && custname!='')
					greet="Welcome "+custname+".<br>(<a class='head' href='javascript:Guest()'><font face=arial size=1 color=#ff9900>Click here</font></a> if you are not "+custname+".)";
				var cc = GetCookie('CartCount');
				if (cc != null && null!=cc && cc!='')
					cartcount=cc;
				var ct = GetCookie('CartTotal');
				if (ct != null && null!=ct && ct!='')
					carttotal="$"+ct;
				var str="";
				var isguest=true;
				var sess = GetCookie('Session');
				str+="<font face=arial size=1 color=brown><b>"+greet+"</b></font>";
				str+="<table width=200 border=0 cellpadding=2><tr><td><a class='head' href='http://biosystems.okstate.edu:8443/PBIS/PBIS.PBIS_Shopcart?calling=index&membertype=none&control=disp'><img src='http://biosystems.okstate.edu:8443/PBIS/images/cart.gif' align=middle><font style='FONT-SIZE: 10px; FONT-FAMILY: arial; color:#ff9900;'>Your cart</font></a></td><td><font style='FONT-SIZE: 10px; FONT-FAMILY: arial; color:brown;'>> Contains <b>"+cartcount+"</b>";
				if(cartcount=="1")
					str+=" item";
				else
					str+=" items";
				str+="<br>> Subtotal: <b>"+carttotal+"</b></font></td></tr></table>";
				if (parseInt(navigator.appVersion)>=5&&navigator.appName=="Netscape")
					document.getElementById('disp').innerHTML = str; 
				else if (document.all)
					document.all['disp'].innerHTML=str;
				
				function Guest()
				{
					DeleteCookie("custname");
					DeleteCookie("custID");
					document.cookie = "custID='';path=/";

					if (sess=='in')
						location.href='http://biosystems.okstate.edu:8443/PBIS/PBIS.PBIS_MemberLogin?control=logout';
					else
						location.href="http://biosystems.okstate.edu:8443/PBIS/index.jsp";
				}