var popy1 = 150;   // change the # on the left to adjust the Y co-ordinate

(document.getElementById) ? dom = true : dom = false;



function hideItVideo09() {

  if (dom) {document.getElementById("videolayer09").style.visibility='hidden';}

  if (document.layers) {document.layers["videolayer09"].visibility='hide';}

}



function showItVideo09() {

  if (dom) {document.getElementById("videolayer09").style.visibility='visible';}

  if (document.layers) {document.layers["videolayer09"].visibility='show';}

}



function placeItVideo09() {

  if (dom && !document.all) {document.getElementById("videolayer09").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight))}

  if (document.layers) {document.layers["videolayer09"].top = window.pageYOffset + (window.innerHeight - (window.innerHeight))}

  if (document.all) {document.all["videolayer09"].style.top = document.body.scrollTop + (document.body.clientHeight - (document.body.clientHeight));}

  window.setTimeout("placeItVideo09()", 10); }