function open_url(url,h,w) {
	rusfinPopUp=window.open(url,'','resizable=yes,scrollbars,width='+(w+10)+',height='+(h+10)+',left=0,top=0');
	rusfinPopUp.focus();
}
function isValidBrowser()
{
var result = 'ns';
if ( navigator.appVersion.indexOf('MSIE 6.') != -1) { result = 'ie6' }
if ( navigator.appVersion.indexOf('MSIE 5.') != -1) { result = 'ie5' }
if ( navigator.appVersion.indexOf('MSIE 4.') != -1) { result = 'ie4' }
return result
}

