function openInfoWindow(theURL,winName,features) { 
	newWin = window.open(theURL,winName,features);
	newWin.focus();
} 

function ShowOrHide(thisDate)
{
  var expiryDate = new Date(thisDate);
  if (currentDate < expiryDate)
  {
      document.write('<div style="display: block; margin-top: 25">');
  } else {
      document.write('<div style="display: none">');
  }
}

function ShowOrHideEnd()
{
  // We put the ending div tag in a script so that it doesn't appear as an orphan tag to webpage editing software.
  document.write('</div>');
}
