function check_browser_6_or_later() {
	var ret = 0;
	
	
	if( navigator.userAgent.indexOf("MSIE 6") != -1 
		||
		navigator.userAgent.indexOf("MSIE6") != -1 
	) {
		ret = 1;
	}
	return ret;
}
