	function help_popup_ck()
	{
		theData   = "";
		theName   = "amazon_help_showme=";
		theCookie = document.cookie+";";
		start = theCookie.indexOf(theName);
		if (start != -1)
		{
			end = theCookie.indexOf(";",start);
			theData = unescape(theCookie.substring(start+theName.length,end));
		}
		
		if (theData != "1")
		{
			PopUpWin_Open(500, 430, './help_popup.htm');
		}

	}

