function show(object) {
      if (document.getElementById && document.getElementById(object) != null)
           node = document.getElementById(object).style.visibility='visible';
      else if (document.layers && document.layers[object] != null)
          document.layers[object].visibility = 'visible';
      else if (document.all)
          document.all[object].style.visibility = 'visible';
  }

  function hide(object) {
      if (document.getElementById && document.getElementById(object) != null)
           node = document.getElementById(object).style.visibility='hidden';
      else if (document.layers && document.layers[object] != null)
          document.layers[object].visibility = 'hidden';
      else if (document.all)
           document.all[object].style.visibility = 'hidden';
		   
}

function HideAllButMe(tgt){
	hide('Panel1');
	hide('Panel2');
	hide('Panel3');
	hide('Panel4');
	hide('Panel5');
	hide('Panel6');
	hide('Panel7');
	hide('Panel8');
	hide('Panel9');
	hide('Panel10');
	hide('Panel11');
	hide('Panel12');
	hide('Panel13');
	hide('Panel14');
	hide('Panel15');
	hide('Panel16');
	hide('Panel17');
	hide('Panel18');
	hide('Panel19');
	hide('FrameVideo')
	window.frames["VideoPreviewFrame"].location = '_blank.html'
	show(tgt)
	}


	
function VideoPreview(a,b){
myFrame = window.frames["VideoPreviewFrame"];
//alert('I am at: ' + myFrame.location)
myFrame.location = 'VideoPreview.aspx?video=panel'+a+'&Text='+b;
show('FrameVideo');
}
