ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahg_5.4.0.1/iccookies.js

31 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-04-02 14:02:31 +00:00
// iccookies.js
//
// (C) Copyright IBM Corporation, 2001, 2004 //
// All rights reserved. Licensed Materials Property of IBM //
// US Government Users Restricted Rights //
// Use, duplication or disclosure restricted by //
// GSA ADP Schedule Contract with IBM Corp. //
//START NON-TRANSLATABLE
var debug_read=false;
// Gets cookie values.
//
function getCookie(Name)
{
var search = Name + "="
if (top.document.cookie == "") return false;
if (top.document.cookie.length > 0) { // if there are any cookies
offset = top.document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = top.document.cookie.indexOf(";", offset)
// set index of end of cookie value
if (end == -1)
end = top.document.cookie.length
return unescape(top.document.cookie.substring(offset, end))
} else return null;
} else return null;
}
//END NON-TRANSLATABLE