To initialize the size of the session window:
There are two available methods:
Size Parameter
<param name="size" value="">
The parameter value may be one of the following:
Normal - Uses default size;
min - Minimal default size;
max - Maximized window;
Example
<param name="size" value="Normal">
Bounds Parameter
This parameter is defined in case the user has not defined any size parameter.
<param name="bounds" value="x=,y=,width=,height="
Value consists of the following parameters:
x - Specifies the logical x-coordinate of the new session window;
y - Specifies the logical y-coordinate of the new session window;
width - Specifies session window width;
height - Specifies session window height.
Example
<param name="bounds" value="x=40,y=40,width=600,height=400"
Note: These two alternate methods are mutually exclusive. In the event the user makes a mistake and defines both the size and bounds parameters simultaneously, the bounds parameter will take preference.