// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text13' , 'Text13LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text13','Hide','',0),'',0);
 
	F_OM('Text18' , 'Text18LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text18','Hide','',0),'',0);
 
	F_OM('Text21' , 'Text21LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text21','Hide','',0),'',0);
 
	F_OM('FormsButton1' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'exit');
 	F_OM('FormsButton2' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'exit');
 	F_OM('FormsButton3' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'exit');
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#FormsButton1').bind('click', function(__e) { return (F_e('FormsButton1', F_CL, __e)); } );
	$('#FormsButton2').bind('click', function(__e) { return (F_e('FormsButton2', F_CL, __e)); } );
	$('#FormsButton3').bind('click', function(__e) { return (F_e('FormsButton3', F_CL, __e)); } );
});
// End Actions

