// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text4' , 'Text4LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text4','Hide','',0),'',0);
 
	F_OM('Text6' , 'Text6LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text6','Hide','',0),'',0);
 
	F_OM('Text15' , 'Text15LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text15','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


