<!--
function check_platform(){
	var ver=navigator.appVersion.toLowerCase();
	if(ver.indexOf('win')!=-1){
		if(ver.indexOf('win16')!=-1) return 'Win3.1';
		else if(ver.indexOf('95')!=-1) return 'Win95';
		else if(ver.indexOf('98')!=-1) return 'Win98';
		else if(ver.indexOf('nt')!=-1) return 'WinNT';
	}
	else if(ver.indexOf('macintosh')!=-1) return 'Mac';
	else if(ver.indexOf('x11')!=-1) return 'X-Win';
	else if(ver.indexOf('linux')!=-1) return 'Linux';
	return 'Others';
}

function ncs_zoom(img,wnd_name,width,height,arrows,start,count){
	if ((check_platform()!='Mac' || document.layers) && top[wnd_name]!=null &&
		typeof(top[wnd_name])=='object' &&
		!top[wnd_name].closed &&
		top[wnd_name].load_flag==1) {
		top[wnd_name].focus();
	}
	else{
		var url='Gallery/html/netchart_zoom.html?img='+img+'&wnd_name='+escape(wnd_name)+'&width='+width+'&height='+height+'&arrows='+arrows+'&start='+start+'&count='+count;	
		top[wnd_name]=window.open(url,wnd_name,'width='+String(width+18)+',height='+String(height+36)+',toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no,left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
	}
}

function oh()
{
	alert("qwe");
}
// -->