
<!-- Copyright 2006 Bontrager Connection, LLC
var Cookies = new Array(); // Leave this line as is.
function ReadCookieValues() {
//
// One personalization place in this function:
//

// 1.
// Between the quotes, specify the cookie name:

var CookieName = "Myradiocodecontactform";

//
// No other personalizations needed in this function.
//
var cookiecontent = '';
if(document.cookie.length > 0) {
   var cookiename = CookieName + '=';
   var cookiebegin = document.cookie.indexOf(cookiename);
   var cookieend = 0;
   if(cookiebegin > -1) {
      cookiebegin += cookiename.length;
      cookieend = document.cookie.indexOf(";",cookiebegin);
      if(cookieend < cookiebegin) { cookieend = document.cookie.length; }
      cookiecontent = document.cookie.substring(cookiebegin,cookieend);
      }
   }
if(cookiecontent.length < 0) { return; }
cookiecontent = unescape(cookiecontent);
Cookies = cookiecontent.split("\t\t");
}
ReadCookieValues();
function GetFieldValue(n) { 
for( var i = 0; i < Cookies.length; i++) { 
   var nv = Cookies[i].split("\t");
   if(nv[0] == n) {
      if(nv[1].length > 0) { return nv[1]; }
      else { return ''; }
      }
   }
return '';
}
function PrintPersonalizednfo() {
var otherwise = '';
var append = '';
if(arguments.length < 1) { return; }
if(arguments.length > 1) { otherwise = arguments[1]; }
if(arguments.length > 2) { append = arguments[2]; }
var v = GetFieldValue(arguments[0]);
if(v.length == 0) { v = otherwise; }
document.write(v+append);
}
//-->


 