function applyEffects()
{
	var registry = IWCreateEffectRegistry();
	registry.registerEffects({
		stroke_0:new IWStrokeParts([	{rect:new IWRect(-1,1,2,81),url:'stroke_vb.png'},
										{rect:new IWRect(-1,-1,2,2),url:'stroke.png'},
										{rect:new IWRect(1,-1,108,2),url:'stroke_hb.png'},
										{rect:new IWRect(109,-1,2,2),url:'stroke.png'},
										{rect:new IWRect(109,1,2,81),url:'stroke_vb.png'},
										{rect:new IWRect(109,82,2,2),url:'stroke.png'},
										{rect:new IWRect(1,82,108,2),url:'stroke_hb.png'},
										{rect:new IWRect(-1,82,2,2),url:'stroke.png'}
									], new IWSize(110,83)),
		shadow_0:new IWShadow({blurRadius:4, offset:new IWPoint(1.4142,1.4142), color:'#000000', opacity:0.500000})
	});
	registry.applyEffects();
}

function hostedOnDM()
{
	return false;
}

function onPageLoad()
{
	loadMozillaCSS('AboutMoz.css');
	Widget.onload();
	applyEffects();
}

function onPageUnload()
{
	Widget.onunload();
}

