
function popupPrint(fileName)
{
 window.open(fileName,
             "windowPrint",
             "width=540,height=400,status=no,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupSearch()
{
  window.open("search.php",
              "windowSearch",
              "width=460,height=460,status=yes,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes");
}

function popupMediaClip(mediaClip)
{
  window.open("tv_film-media_clip.html?pageFormat=popup&mediaClip="+mediaClip,
              "windowMediaClip",
              "width=460,height=360,status=yes,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes");
}


function popupBehind(id,wid,hei)
{
  if (wid == null){
    wid = 500;
  }
  if (hei == null){
    hei = 500;
  }
  oBehind = window.open("about-behind-display.html?pageFormat=popup&intContentId="+
                        id, "windowBehind","height="+hei+",width="+wid+
                        ",status=no,menubar=no,toolbar=no,scrollable=no,scrollbars=no,resizable=yes");
  oBehind.focus();
}

function popupExternal(fullUrl)
{
	url = fullUrl;
	winExternal = window.open(url, 'windowExternal', 'width=700, height=600, location=yes, status=yes, menubar=yes, toolbar=yes, scrollable=yes, scrollbars=yes, resizable=yes');
	winExternal.focus();
}



