	<!--//hide
		
		function CheckQty( frm)
		{
			if( isNaN(frm.Qty.value))
			{
				alert("Quantity should be a number!");
				frm.Qty.value = 1;
				frm.Qty.focus();
				return false;
			}
			if(frm.Qty.value <= 0)
			{
				alert("Quantity should be positive!");
				frm.Qty.value = 1;
				frm.Qty.focus();
				return false;
			}
			return true;
		}
			
		function GetCookie()
		{
			var cookies = document.cookie;
			var start= cookies.indexOf("RickWolf=");
			if(start == -1){ alert("Cookie not found!");  return "";}
			start = cookies.indexOf("=", start)+1;
			end = cookies.indexOf(";", start);
			if(end == -1) end = cookies.length;
			var value=unescape(cookies.substring(start, end));
			//alert("Cookie: "+ value);
			return ""+ value
		}
	
	//-->