// safe site-wide javascript functions

// open popup window
function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// launch the fme overview movie
function launchMovie() {
	openWindow('/products/movies/fme-movie/index.html','fmemoviepopup','width=955,height=490');
}

// launch the sales contact popup form
function launchContactForm() {
	openWindow('/aboutus/sales-contact-popup.php','salescontactpopup','width=450,height=575');
}

// launch the newsletter signup popup form
function launchNewsletterForm() {
	openWindow('/aboutus/news/newsletter-signup-popup.php','newsletterpopup','width=425,height=400');
}

// launch the fme server movie
function launchServerMovie() {
	openWindow('/support/movies/FMEServer/FMEServerStreamDemo.html','fmeservermoviepopup','width=680,height=560');
}