// JavaScript Document

function close_flash() {
	if ( document.getElementById('flash_div') ) {
		document.getElementById('flash_div').style.display = 'none';
	}
}

function enable_flash() {
	if ( document.getElementById('flash_div') ) {
		document.getElementById('flash_div').style.display = 'inline';
	}
}

function startFlash() {
	setTimeout("enable_flash()",3000);
}

addEvent(window,"load",startFlash);