﻿function show(tagID)
{
document.getElementById(tagID).style.display='block';
}


function hide(tagID)
{
document.getElementById(tagID).style.display='none';
}


function openBrWindow(theURL,winName) { //v2.0
  window.open(theURL,'VideoPlayer','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=580,height=420');
}
