function overlay(message) { Element.update('overlay-contents', message); Element.setOpacity('overlay-background', 0.5); Element.show('overlay'); } function show_demo() { window.open('/flash/demo.html', 'FlashDemo', 'width=740,height=555'); } var eyespeak = { baseHref: 'http://www.eyespeakenglish.com', init: function(){ eyespeak.paypalSubmit(); }, showDemo: function(){ var url = eyespeak.baseHref +"/flash/demo.html"; window.open(url, 'FlashDemo', 'width=740,height=555'); //prevent the click from opening the link return false; }, switchLanguage: function(newLanguage){ window.location.href = window.location.href.replace(/\/(en|sp|ch)\//, '/'+ newLanguage +'/'); }, paypalSubmit: function(){ var form = document.getElementById("paypal-form"); if (form){ setTimeout(function(){ //if (confirm("submit form")){ form.submit(); //} }, 20000); } } }