// Begin Actions
function F_doLoaded() {	document.main = new F_cMain();	document.objectModel = new Object();	F_OM('Layout','LayoutLYR', 'doc', '', new Array(	'Page Loaded',F_functLayoutAction0,'','',0));	F_pageLoaded('Layout');}function F_functLayoutAction0(params) {
var layoutWidth = 671; 
if(F_NN) {
var bodyWidth = window.innerWidth;
var theOffset = (bodyWidth - layoutWidth)/2;
if(theOffset > 0) {
document.layers['LayoutLYR'].left=theOffset;
}
} else {
var bodyWidth = document.body.offsetWidth;
var theOffset = (bodyWidth - layoutWidth)/2;
if(theOffset > 0) {
document.all.tags('DIV') ['LayoutLYR'].style.left=theOffset;
}
}

}

 
$(document).ready( function() {
F_onLoaded();
});
// End Actions

