// Display the Flier

var popupFlier = null;

// Pop up a window with the flier
function ShowFlier(FLIER_FILE,w,h) {
  if (window.screen) {

	  // var w = 640;
	  // var h = 828;

  popupFlier = window.open('','popupFlier','width=' + (w + 40) + ',height=' + (h + 40) + ',left=' + (screen.availWidth - (w + 40))/2 + ',top=' + (screen.availHeight - (h + 40))/2 + ', scrollbars=yes');
	}

  popupFlier.location.href = FLIER_FILE;
}
