function popupVideo(url,width,height) 
{
  var fromLeft = (screen.width-800)/2;
  var fromTop = (screen.height-500)/2;
  var Location = url;
  cwinx = window.open(Location,'cwinx','width='+ width + ',height=' + height + ',scrollbars=0,location=no,resizable=no,left=' + fromLeft + ',top=' + fromTop + ',toolbar=no');
  cwinx.focus();
}
function goToSeminar(typeID,subTypeID)
{
  var theForm = document.forms[1];
  theForm.eTypeID.value = typeID;
  theForm.eSubTypeID.value = subTypeID;
  theForm.action = "/SECEvents/listEventsByType.asp";
  theForm.submit();
}
