<!--
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

$(document).ready(
	function() {
		$('#menu_btn2').mouseover(function(){$(this).children('#submenu').css('display','block')});
		$('#menu_btn2').mouseout(function(){$(this).children('#submenu').css('display','none')});
	}
);

function tops(url, w, h) {
	s = 'status=no,scrollbars=no,width=' + w + ',height=' + h + ',resizeable=false,status=no';
	var TrueString = '';
	for (var i = 0; i < url.length; i += 1) {
		var CurrentChar = url.charAt(i);
		if ((CurrentChar != '.') && (CurrentChar != '/') && (CurrentChar != '-') && (CurrentChar != '_'))
			TrueString += CurrentChar;
	}
	WindowName = TrueString + 'SecondWnd';
	window.open(url, WindowName, s);
	return false;
}

// -->
