<!--function Tflash(url,winN) {	var _agent = navigator.userAgent.toLowerCase();	var _win = (_agent.indexOf('win') != -1);	var _mac = (_agent.indexOf('mac') != -1);	var _major = parseInt(navigator.appVersion);	var _minor = parseFloat(navigator.appVersion);	var _ns    = ((_agent.indexOf('mozilla') != -1) && (_agent.indexOf('compatible') == -1));	var _ns6   = (_ns && (_major == 5));	var _ns6up = (_ns && (_major >= 5));	var _ns61  = (_ns6 && (_agent.indexOf('netscape6/6.1') != -1));	var _ns62  = (_ns6 && (_agent.indexOf('netscape6/6.2') != -1));	var _ns7 = (_ns6 && (_agent.indexOf('netscape/7') != -1));	var _moz   = (_ns6 && (_agent.indexOf('netscape') == -1));	var leftPos = (screen.width) ? (screen.width - 760) / 2 : 0;	var topPos  = (screen.height) ? ((screen.height - 500) / 2) - 30 : 0;	var property = 'width=760,height=500,left='+leftPos+',top='+topPos+',toolbar=0,location=0,directories=0,menubar=0,status=1,scrollbars=0,resizable=0';		if (_ns7) {		winN = window.open(url,winN,property);		self.onBlur = winN.focus();	}	else if ((_mac && _ns6 || _mac && _ns61) && !((_mac && _ns62) || _moz)) {		top.location.href = url;	} else {		winN = window.open(url,winN,property);		self.onBlur = winN.focus();	}}//-->
