var newwindow;

function showpop(url) {
	newwindow=window.open(url,'name','height=269,width=320,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
 }


function showHideVideos(show) {
  var showing = document.getElementById(show).style.display == "block";
  for (var x=0; x<VideoDivs.length; x++) {
    if (!showing && VideoDivs[x] == show) {
      document.getElementById(VideoDivs[x]).style.display = "block";
    }
    else {
      document.getElementById(VideoDivs[x]).style.display = "none";
    }
  }
}

var VideoDivs = new Array();
