/*
	Created date: 04/12/2001
	Created by: Pobpapa A.
	Last modified date: 12/12/2001
	Last modified by: Pobpapa A.
*/

//Check what browser and browser version.
function CheckBrowser() {
	IE4 = false;
	IE5 = false;
	IE6 = false;
	NS4 = false;
	NS6 = false;
	IE7 = false;
	if (document.getElementById && document.all) {
		IE5 = true;
		return;
	} else if (document.all && !window.print) {
		IE4 = true;
		return;
	} else if (document.getElementById && !document.all) {
		NS6 = true;
		return;
	} else if (document.layers) {
		NS4 = true;
		return;
	} else if (window.navigator.userAgent.indexOf("MSIE 6.0")>=1) {
		IE6 = true;
		//alert("Can not Display IE6");
		return;
	}
}