function continueShopping()
{
	var locCookie = readCookie('ContinueShoppingLocation');
	if(locCookie != null)
		window.location.href = unescape(locCookie);
	else	
		window.location.href = 'http://pualib.com';
}

function  getElement(szDivID)
{
	var obj = document.getElementById ? document.getElementById(szDivID) : null;
	if(obj)
		return obj;
	obj = document.layers ? document.layers[szDivID] : null;	
	if(obj)
		return obj;
	obj = document.all ? document.all[szDivID] : null;	

	return obj;
}

function showElement(szDivID,iState) // 1 visible, 0 hidden
{
	var obj;
	
	if(document.layers && document.layers[szDivID])	   //NN4+
	{	
		obj = document.layers[szDivID];
		obj.visibility = iState ? "show" : "hide";
		obj.display = iState ? "" : "none";
	}
	if(document.getElementById && document.getElementById(szDivID) && document.getElementById(szDivID).style)	  //gecko(NN6) + IE 5+
	{
		obj = document.getElementById(szDivID);
		obj.style.visibility = iState ? "visible" : "hidden";
		obj.style.display = iState ? "" : "none";
	}
	if(document.all && document.all[szDivID] && document.all[szDivID].style)	// IE 4
	{
		obj = document.all[szDivID];
		obj.style.visibility = iState ? "visible" : "hidden";
		obj.style.display = iState ? "" : "none";
	}

	if(obj && obj.style)
	{
		if(obj.style.width != null)
		obj.style.width = (iState ? "350" : "0");
		if(obj.style.height != null)
		obj.style.height = (iState ? "530" : "0");
	}
}


