//POPUP WINDOW

function popupAboutUsWindow()
{
  window.open('/about_us.html', 'about_us', 'toolbar=no,location=no,scrollbars=yes,width=425,height=465,resize=no,screenX=300,screenY=150,top=150,left=300');
}

function popupInfoWindow(url, name)
{
  window.open(url, name, 'toolbar=no,location=no,scrollbars=yes,width=425,height=260,resize=no,screenX=300,screenY=275,top=275,left=300');
}

function popupLocationsWindow()
{
  window.open('/locations.html', 'locations', 'toolbar=no,location=no,scrollbars=no,width=425,height=465,resize=no,screenX=300,screenY=150,top=150,left=300');
}

function popupPrivacyPolicyWindow()
{
  window.open('/privacy_policy.html', 'privacy_policy', 'toolbar=no,location=no,scrollbars=yes,width=425,height=465,resize=no,screenX=300,screenY=150,top=150,left=300');
}

function popupContactWindow()
{
  window.open('/contact.php', 'contact', 'toolbar=no,location=no,scrollbars=yes,width=560,height=390,resize=no,screenX=240,screenY=165,top=165,left=240');
}