
<!--

/*  Define Inbox Text Strings */

var strBusTech = 'The Business Technology audience base is comprised primarily of C-level executives and IT decision makers with substantial buying power. Well informed and highly engaged, they understand the value of IT and are continually looking for new opportunities to use technology and corporate management to drive innovations and improve operations. In addition, this audience represents the full spectrum of FORTUNE 1000® companies.';
var strCallCenter = 'These Call Center subscribers and attendees are executives and professionals involved in call center services, e-commerce, marketing and sales, enterprise services, telecom management, information services, help desk, strategic development, enterprise communications, customer service management, quality monitoring, quality assurance, technical support, campaign execution and buying, all with the goal of learning how to improve their operations and acquire the latest technology.';
var strChannelPub = 'Known collectively as the Channel, these value-added resellers (VARs), consultants, application developers, integrators, ISVs and Managed service providers design, develop, build, integrate, manage and advise about complex technological innovations for customers ranging from local small businesses to large corporations and even to local, state and federal government.';
var strElectronics = 'These Electronics and Engineering professionals are the decision-makers at the heart of technology innovation. They are the engineers and engineering managers involved in designing the semiconductors and systems as well as the supply chain managers, executives and financial professionals who make it possible. They work in a wide variety of industries, and they work for the most influential companies including Cisco, Hewlett Packard, Apple, Boeing, Intel, Motorola, Nokia, Nortel Networks and others.';
var strEntertainment = 'The four primary Entertainment audience groups serve a broad spectrum of managers, audio and video engineers and technicians, acoustical architects, system integrators and installers, and producers, as well as creative specialists including directors, cinematographers, production studio and location crews, camera operators and post production staff. These professionals are eager to stay abreast of the latest trends, technologies, techniques, products and solutions that help them gain a competitive advantage in their respective industries. ';
var strGaming = 'The United Business Media Gaming Group audience reaches 90 percent of the global game developer community. It is an elite audience of professional game developers that includes creative directors, executive producers, lead designers, CEOs and directors of development, in addition to designers, audio engineers, and programmers from around the globe.';
var strMediaLive = "The United Business Media Event Attendees audience includes more than 6,000 technology vendors and 500,000 attendees from over 20 of the world's top technology events. Events are created expressly to meet the needs of technology buyers, sellers, and developers within emerging, accelerating and established technology markets.";
var strSoftwareDev = 'These Software Development professionals are influential software architects, project managers, software development team leaders/managers, corporate and independent software developers, systems administrators, IT/network managers and staff and corporate business management who are concerned with people management issues, corporate infrastructures, and products and best practices for delivering reliable, successful applications on time and on budget.  This audience of software development and IT professionals manage the infrastructure, the processes, the people and tools in coding efforts, the design phase, quality assurance and entire projects.';
var strTechnology = 'The Technology & Learning group includes educators at both the district and the school level, from administrators to teachers and media specialists. Its circulation is ABC audited and includes senior-level management, district administrators, superintendents, principals, vice principals, directors of vocational education, and MIS/IS/IT management, including technology directors, coordinators and managers.';
var strHiTech = '"The Database of all United Business Media Databases", combines the purchasing power of every United Business Media subscriber and pinpointing self-reported select into one massive deduped audience of Hi-Tech professionals.  This databases gives you the option to pick and choose your targeted segment while maximizing your marketing reach across all of the United Business Media  properties.';
var strConsumer = 'This At Home Address Database has been richly enhanced with Knowledgebase/Amerilink consumer data identifying key demographic information about the tech savvy professionals who subscribe to various United Business Media publications. Mostly married with an average income of over $94,250, these affluent and educated readers also have the disposable income to purchase a wide array of products and services.';
var strLightRead = 'The Light Reading audience includes service providers, equipment manufacturers, the business/financial community and others. Light Reading`s active customer base includes every leading public and private firm in the telecommunications industry.';


/* Info Box Functions */

var htmlCloseBox = '<img src="/images/infoBox/infoBoxClose.gif" align="right" width="15" height="15" border="0" alt="Close Window" onClick="javascript:infoBoxClose()" />';
var bt = navigator.userAgent;
bt = bt.toUpperCase();

function infoMouseOver(objEvt) {

   var targ, boxId;
   
   if (objEvt.target) targ = objEvt.target; else  if (objEvt.srcElement) targ = objEvt.srcElement;   

   if (targ.tagName == 'TD' && targ.parentNode.id != '') {
      
      boxId = targ.parentNode.id;
      var ibWidth = 315;
      var ibHeight = 222;
      
      document.getElementById('infoTable').style.cursor = "help";
      targ.parentNode.style.background="#C0C0C0";
      targ.parentNode.style.fontWeight="bold";
     
      if (bt.match("SAFARI") == null) {
         p = document.getElementById('arrow');
         p.style.position="absolute";
         p.style.top=(findPosY(targ.parentNode)-8) + "px";
         p.style.left= (findPosX(targ.parentNode)-30) + "px";
         p.src = '/images/arrow.gif';
         p.style.width = "18px";
         p.style.height = "36px";
         p.style.visibility='visible';
      }
      
      ib = document.getElementById('infoBox');
      ib.style.width = ibWidth + "px";
      ib.style.height= ibHeight + "px";
      ib.innerHTML ='<div class="infoBoxHeader">' + htmlCloseBox + targ.parentNode.cells[0].innerHTML +  '</div><div class="infoBoxText">' + eval('str' + boxId.valueOf()) + '</div>';
      ib.style.visibility='visible';
      
   }
   return false;
}


function infoMouseOut(objEvt) {

   if (objEvt.target) targ = objEvt.target; else  if (objEvt.srcElement) targ = objEvt.srcElement;   

   if (targ.tagName == 'TD' && targ.parentNode.id != '') {
      targ.parentNode.style.background="#FFFFFF";
      targ.parentNode.style.fontWeight="normal";
      document.getElementById('infoTable').style.cursor = "default";
   }

}

function infoBoxClose() {
      document.getElementById('infoBox').style.visibility='hidden';
      document.getElementById('arrow').style.visibility='hidden';
}


function findPosX(obj) {
    var curleft = 0;
    if(obj.offsetParent)
        while(1) 
        {
          curleft += obj.offsetLeft;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.x)
        curleft += obj.x;
    return curleft;
}
  
function findPosY(obj) {
    var curtop = 0;
    if(obj.offsetParent)
        while(1)
        {
          curtop += obj.offsetTop;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.y)
        curtop += obj.y;
    return curtop;
}
  

//-->
