// Flash and CSS init (c) Agents.se - v3.0


// CSS Browser Selector   v0.2.3
// Documentation:         http://rafael.adm.br/css_browser_selector
var css_browser_selector = function() {
	var 
		ua = navigator.userAgent.toLowerCase();
		is = function(t){ return ua.indexOf(t) != -1; },
		h = document.getElementsByTagName('html')[0],
		b = (!(/opera|webtv/i.test(ua)) && /msie (\d)/.test(ua)) ? ((is('mac') ? 'ieMac ' : '') + 'ie ie' + RegExp.$1)
			: is('gecko/') ? 'gecko' : is('opera') ? 'opera' : is('konqueror') ? 'konqueror' : is('applewebkit/') ? 'webkit safari' : is('mozilla/') ? 'gecko' : '',
		os = (is('x11') || is('linux')) ? ' linux' : is('mac') ? ' mac' : is('win') ? ' win' : '';
	var c = b+os+' js';
	h.className += h.className?' '+c:c;
}();



// No spam e-mail address
function noSpam(a,b,c) {
	document.write('<a href="mai'+'lto:'+c+'@'+b+'.'+a+'">'+c+'@'+b+'.'+a+'</a>');
}


// png fix ie background images
if (document.all && document.styleSheets && document.styleSheets[0] &&
  document.styleSheets[0].addRule)
 {
  // Feel free to add rules for specific tags only, you just have to call it several times.
  document.styleSheets[0].addRule('*', 'behavior: url(js/iepngfix.htc)');
 }
 
 <!--
var new_window;
function openWindowPopup(page,name,width,height,scrollbars,resizable,callInit,centered) {
	var configWidthHeight="";
	if(width!=-1 && height!=-1) {
		//new_window.resizeTo(width,height);
		configWidthHeight='height=' + height + ',width=' + width + ',';
	}
	new_window = window.open (page, 'PopUp' + name, config= configWidthHeight + 'toolbar=no, menubar=no, scrollbars=' + scrollbars + ', resizable=' + resizable + ',location=no, directories=no, status=no');

	if(callInit) {
		try {
			setTimeout("new_window.init(" +centered + ")",300);
		} catch (error) {
			setTimeout("new_window.init(" +centered + ")",1000);
		}

	}
	//self.name=name;
	return;
}


-->
