function launchEMP(videoURL)
{
  window.open(videoURL,"empWindow","height=390,width=340,scrollbars=no,resizable=no,toolbar=no,status=no,menubar=no,location=no");
}

function launchNetscapeEMP(videoURL)
{
window.open(videoURL,"empWindow","height=290,width=325,scrollbars=no,resizable=no,toolbar=no,status=no");
}

window.name='cableWindow';

function placeAd(content) {
        var adDiv = document.getElementById('ad_island');
        var pObjCol = content.getElementsByTagName("p");
        var pObjPos = Math.round(pObjCol.length / 2) - 2; // minus 2 as ther is often a few empty paragraphs at the end of article
        if (pObjPos <= 3) // too close to the top (may interfere with photo, if presant)
                pObjPos = 4;
        var pObj = pObjCol[pObjPos];
        if (pObj && adDiv) {
                pObj.parentNode.insertBefore(adDiv, pObj);
        }
}

function getLocation() {
  if (document.getElementById) {
        var content = document.getElementById("content");

        if (content) {
                placeAd(content);
        }
  }
}  

