var is_IE = (navigator.appName.indexOf("Microsoft") != -1);
var floating_msg_looper;
var floating_msg_zamik_left = 40;
var floating_msg_zamik_top = 15;
var floating_msg_div_name = "floating_msg_div_id";

var floating_msg_flash_id = "msg_flash_obj";
var floating_msg_flash_close_delay = 300;

function floating_msg_init()
	{
	window.onresize = floating_msg_init;	
	window.onscroll = floating_msg_set_pos;
	
	floating_msg_div = document.getElementById?document.getElementById(floating_msg_div_name):document.all?document.all[floating_msg_div_name]:document.layers[floating_msg_div_name];
	floating_msg_div = floating_msg_div.style;
	
	floating_msg_w = floating_msg_clean_css_px(floating_msg_div.width);
	floating_msg_h = floating_msg_clean_css_px(floating_msg_div.height);
	
	if (floating_msg_looper) {clearTimeout(floating_msg_looper);}
	floating_msg_set_pos();
	}


function floating_msg_set_pos()
	{if (is_IE) 
		{browser_w = document.body.clientWidth + 20;
		browser_h = document.body.clientHeight;
		browser_scroll_top = document.body.scrollTop;
		}
	else 
		{browser_w = window.innerWidth;
		browser_h = window.innerHeight;
		browser_scroll_top = window.pageYOffset;
		}
	
	floating_msg_div.left = browser_w - floating_msg_w - floating_msg_zamik_left;
	floating_msg_div.top = browser_scroll_top + (browser_h - floating_msg_h - floating_msg_zamik_top);
	}

function floating_msg_flash_action(new_action)
	{if (is_movie_loaded(floating_msg_flash_id))
		{document.getElementById("floating_msg_div_id").style.visibility = "visible";
		SetVar(floating_msg_flash_id,"controler","action_type",new_action);
		GoToFrame(floating_msg_flash_id,"controler","1");
		}
	}

function floation_msg_hide_div()
	{document.getElementById("floating_msg_div_id").style.visibility = "hidden";}

function floating_msg_clean_css_px(input)
	{if ((pos = input.indexOf("px")) != -1)
		{input = input.substr(0,pos);}
	input = Number(input);
	
	return input;
	}
