// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('loading' , 'loadingLYR', 'txt', 'Layout',new Array(
	'Page Loaded','loading','Hide','',0),'',0);
 
	F_OM('Text20' , 'Text20LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text20','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_OM('FormsButton4' , '', '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)); } );
	$('#FormsButton4').bind('click', function(__e) { return (F_e('FormsButton4', F_CL, __e)); } );
});
// End Actions


