function init() {  
	//draw home flash if on home page
	if (document.getElementById('home-flash') != null) CreateControl('home-flash', '600', '225', 'transparent', 'FFFFFF', 'common/flash/home.swf');

}

if (isDefined(window.addEventListener)) {
   window.addEventListener('load', init, false);
}
else if (isDefined(window.attachEvent)) {
   window.attachEvent('onload', init);
}