
function checkParent()
{ 

/*--------------------------------------------------------------------------------------------------
   This page should be displayed in an iframe from the home page.
   If it is not displayed from index.html, then display the home page.  
--------------------------------------------------------------------------------------------------*/
wPar = window.parent.location.pathname;

if ( wPar.indexOf('.php') < 1 || wPar.indexOf('venues.php') > 1) 
  {  window.location="http://www.vincentbove.com/"; 
  }

}
