// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text12' , 'Text12LYR', 'txt', 'Layout',null,'',0);
 
		F_OM('Forms Button1' , '', 'btn', 'Text12',new Array(
		'Clicked','Layout','Close','',0),'',0,'FormsButton1');
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Forms Button1').bind('click', function(__e) { return (F_e('Forms Button1', F_CL, __e)); } );
});
// End Actions


