function show_modal(html)
{
	if(html == 'seo')
	{
		
		make_window_color('black');
		document.getElementById('this_is_flash').style.display='none';
	}
	   
}

function make_window_color(color)
{
	div = document.getElementById('body_content');
	bl_media = document.getElementById('black_media');
	modBOX = document.getElementById('modal_box');
	if(color)
	{
	x = div.offsetWidth;
	y = div.offsetHeight;
	bl_media.style.width = x+'px';
	bl_media.style.height = y+'px';
    bl_media.style.display='block';
	rnd = x/2;
	modBOX.style.left = (rnd - 400)+'px';
	modBOX.style.display = 'block';
	}
	else
	{
		modBOX.style.display = 'none';
		bl_media.style.display = 'none';
		document.getElementById('this_is_flash').style.display='block';
	}
}