
var elapsedTime = 0;

onerror=handleErr
var txt=""
var firstvisit=true

if (document.cookie){}
else if(firstvisit)
{
	alert('This site requires cookies.  Please enable them if you wish to place an order.');
	firstvisit=false;
}

function rightside(num)
{
	var panel = null;
	if(num==0)
	{
		panel = document.getElementById("top1");
		panel.style.fontWeight = "normal";
		panel = document.getElementById("top2");
		panel.style.fontWeight = "normal";
	}
	else if(num==1)
	{
		panel = document.getElementById("comp");
		panel.style.display = "inline";
		panel = document.getElementById("cart");
		panel.style.display = "none";
		panel = document.getElementById("top1");
		panel.style.fontWeight = "bold";
		panel = document.getElementById("top2");
		panel.style.fontWeight = "normal";
	}
	else if(num==2)
	{
		panel = document.getElementById("cart");
		panel.style.display = "inline";
		panel = document.getElementById("comp");
		panel.style.display = "none";
		panel = document.getElementById("top1");
		panel.style.fontWeight = "normal";
		panel = document.getElementById("top2");
		panel.style.fontWeight = "bold";
	}
}

function handleErr(msg,url,l)
{
	/*ifrm = document.createElement("IFRAME");
	
	var stk = "(window.event.srcElement): " + window.event.srcElement;
	var director = "http://www.adiamor.com/handleJSerror.aspx?url=" + url + "&msg=" + msg + "&stk=" + stk + "&line=" + l;
	ifrm.setAttribute("src", director);
	ifrm.style.width = 1+"px";
	ifrm.style.height = 1+"px";
	ifrm.style.display = "none";
	document.body.appendChild(ifrm);*/
	
	return true;
}

// set to the Session.Timeout value to notify users
// one minute after their Session times out.

/*var maxTime = (120 + 1) * 60; //<%=Session.Timeout%>
var oneSecond;
oneSecond = window.setTimeout("timeoutCheck();",1000);

function timeoutCheck()
{
  elapsedTime = elapsedTime + 1;
  if (elapsedTime > maxTime)
  {
    alert ("Your session has timed out. You will need to add any items you had in your shopping cart again and re-enter any previous information."); 
    window.location.reload( false );
  }
  else
  {
    oneSecond = window.setTimeout("timeoutCheck();",1000);
  }
}*/
