//Below are percentage for 24/7 ad server per section and position, 0-100 range
lpathname = document.location.pathname.toLowerCase();

//***************************************
//TOP banner: 468, 728
//***************************************
GENERIC_TOP = 100;
if (lpathname.indexOf("/home_primetime") >=0)
{
	GENERIC_TOP = 100;
}


//ONAIR_TOP might not be in used

//***************************************
//RIGHT BANNER: 120,160,300x600
//***************************************
GENERIC_RIGHT = 100;
/*
if (lpathname.indexOf("/onair/shows/murder_by_the_book") >=0)
{
	GENERIC_RIGHT = 0;
}
*/


//***************************************
//MIDDLE BANNER: 300
//***************************************
//all middle is articles
GENERIC_MIDDLE = 100;

//***************************************
//DO NOT EDIT BELOW
//***************************************
//advertising.com functions

function setCookie24(NameOfCookie, value, expirehours) {
var ExpireDate = new Date ();
ExpireDate.setTime(ExpireDate.getTime() + (expirehours * 3600 * 1000));
document.cookie = NameOfCookie + "=" + escape(value) + ((expirehours == null) ? "" : "; expires=" + ExpireDate.toGMTString()) + "; path=/;" ;
}
 
function getCookie24(name) {
 var beg = document.cookie.indexOf(name+"=");
 var len = beg+name.length+1;
 var end = document.cookie.indexOf(";",len);
 if (end == -1){
  end = document.cookie.length;
 }
 return unescape(document.cookie.substring(len,end));
}
 
var ACE_AR = "";
function openWin24(site){
 ACE_AR = {Site: site, Size: '468060'};
/*
 document.write('<SCR'+'IPT LANGUAGE="JavaScript" ');
 document.write('SRC="http://uac.advertising.com/wrapper/aceUAC.js">');
 document.write('</SCR'+'IPT>');
*/
}
function openWin120(site){
 ACE_AR = {Site: site, Size: '120600'};
/*
 document.write('<SCR'+'IPT LANGUAGE="JavaScript" ');
 document.write('SRC="http://uac.advertising.com/wrapper/aceUAC.js">');
 document.write('</SCR'+'IPT>');
*/
}
function openWin300(site){
 ACE_AR = {Site: site, Size: '300250'};
/*
 document.write('<SCR'+'IPT LANGUAGE="JavaScript" ');
 document.write('SRC="http://uac.advertising.com/wrapper/aceUAC.js">');
 document.write('</SCR'+'IPT>');
*/
}
 
//end advertising.com functions

function getCookie(name)
{
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1)
  {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  }
  else begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1) end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}

function setCookie(name, value, expires, path, domain, secure)
{
  var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
  document.cookie = curCookie;
}
function fixDate(date) 
{
  var base = new Date(0);
  var skew = base.getTime();
  if (skew > 0) date.setTime(date.getTime() - skew);
}

//not used
function incAdView(pos)
{	
}