// JavaScript Document
proveri_browser = function($lang)
{
	if($.browser.msie && $.browser.version <8) 
	{
		$close = new Array();
		$warning = new Array();
		$close['sr'] = 'Trajno zatvorite ovu poruku';
		$close['en'] = 'Close this message permanently';
		
		$warning['sr']='Savetujemo Vam da pređete na Microsoft <a href="http://windows.microsoft.com/sr-Latn-CS/internet-explorer/products/ie/home" target="_blank">Internet Explorer 8</a> ili probate <a href="http://www.firefox.com" target="_blank">Mozila Firefox</a>, <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> ili <a href="http://www.apple.com/safari/" target="_blank">Apple Safari</a>.';
		$warning['en']='We advise you to use <a href="http://www.microsoft.com/windows/Internet-explorer/" target="_blank">Microsoft Internet Explorer 8</a> or try <a href="http://www.firefox.com" target="_blank">Mozila Firefox</a>, <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Apple Safari</a>.';
		
		$x_title = $close[$lang];
		$i_msg = $warning[$lang];
		$poruka = '<div id="ie_msg"><a href="#" style="float:right"><img src="graphics/btn_x_blue.png" alt="[x]" title="'+$x_title+'" border="0" /></a><img src="graphics/alert.png" alt="!" hspace="5" vspace="0" align="left" /><strong>'+$i_msg+'</strong></div>';
		$('#msg').prepend($poruka);
		$('#msg').slideDown();
	}
	$('#ie_msg').click(function(){ $.get("process.php", {opt:'show_ie_msg'}, function(data){ $('#msg').fadeOut('slow');});})
}
