// app_config_for_presentation_fw.js

/*
   The purpose of app_config_for_presentation_fw.js is to store application-specific configuration variables
   for the Presentation framework.
*/


/*
  The variable sImagesDirectoryPath should be set to the web context root- 
  relative path of the directory that contains the image files used by the 
  Calendar Date Selector control. 
   
  Example: 
  
  var sImagesDirectoryPath = "/presentation/images/";
  
  where 
    presentation is the name of the web context root of the web application
*/
var sImagesDirectoryPath = "images/";


/*
   The variable sIframeShimUrl should be set to the web context root-relative 
   path and file name of a blank (no-body) html page. This blank page is used 
   in order to avoid getting the following Securty Altert Message when requesting
   over a HTTPS connection a JSP page that contains a Horizontal Flyout Menu or
   Calendar Date Selector control.

	This page contains both secure and nonsecure items.
	Do you want to display the nonsecure items?

	Please note that a blank.htm page is provided with the Presentation framework 
	in the folder WebContent/scripts
	
    Example: 
	
    var sIframeShimUrl = "/presentation/scripts/blank.htm"; 
	
    where 
     presentation is the name of the web context root of the web application
	
*/
var sIframeShimUrl = "scripts/blank.htm"; 