/* ########################################################################## # Fishing Hot Spots Map Server # # Copyright (c) 2001 # # AMI Visions, Inc. Lakewood, CO. # ########################################################################## */ // Internal session id for servers which don't allow for cross server cookies var oims_session_id = 'eb175d148f8212bc916f0099facb6d69'; // Get a cookie from a browser's memory function Get_Cookie(name) { var start = document.cookie.indexOf(name+"="); var len = start+name.length+1; if ((!start) && (name != document.cookie.substring(0,name.length))) return null; if (start == -1) return null; var end = document.cookie.indexOf(";",len); if (end == -1) end = document.cookie.length; return unescape(document.cookie.substring(len,end)); } // Set a cookie in the browser's memory function Set_Cookie(name,value,expires,path,domain,secure) { document.cookie = name + "=" +escape(value) + ( (expires) ? ";expires=" + expires.toGMTString() : "") + ( (path) ? ";path=" + path : "") + ( (domain) ? ";domain=" + domain : "") + ( (secure) ? ";secure" : ""); } // Initialize the Fishing Hot Spots Map Server // Notice the javascript include being written. function oiMapServerInitialize( ) { if( !Get_Cookie('SESSION_ID') ) Set_Cookie('SESSION_ID', oims_session_id ); oims_session_id = Get_Cookie('SESSION_ID'); document.write( ''); } function oimsTitle() { return ("Fishing Hot Spots Mapping Demo for Client id: 2018"); } function oimsHitCount() { return ("1"); } function SessionID() { return ("eb175d148f8212bc916f0099facb6d69"); } function Referer() { return ("http://www.floridafisheries.com/oims/index.html"); }