/** { [autoshowroom.pageobject.beforeafters.windows]
* @dependency :: [lib.functions.window.Catch]
* @dependency :: [lib.functions.window.AddListener]
* @dependency :: [lib.objects.window.swfobject]
* /---/ 
* @author :: Scott McDonald;
* @license :: Lowen Corporation Use Only [Proprietary Script]
* /---/ 
*/

function PageObject() {
	try {
		var target = this;
		this.typename = "autoshowroom.pageobject.beforeafters.windows";
		this.onPageLoad = function() {
		var so = new swfobject.embedSWF("/assets/flash/window1-ba.swf", "FlashLoader", 398, 248, "7", "/inc/swf/expressInstall.swf");
		 };
		this.constructor = function() {
			if (AddListener) {
				AddListener(window, "load", function() { target.onPageLoad(); });
			};
		};
		this.constructor();
	} catch (e) { Catch(this.typename + ".base()", e, true); };
};
/** } [autoshowroom.pageobject.beforeafters.windows] **/

if (layoutObject) { layoutObject.pageObject = new PageObject(); }
