//
//redirection for Mac IE

var ua = navigator.userAgent;
var tag = '';
if(ua.indexOf("Win") >= 0){
	if(ua.indexOf("MSIE") >= 0){ //IE
		tag += '';
	} else if(document.layers){ //NN4
		tag += '';
	} else { //OTHER
		tag += '';
	}
}
else if(ua.indexOf("Mac") >= 0) {
		if(document.getElementById){ //NN7. IE5
			tag += '<meta http-equiv="refresh" content="0; URL=index2.html">';
		} else if(document.layers){ //NN4
			tag += '';
		} else if(document.all){ //IE4
			tag += '<meta http-equiv="refresh" content="0; URL=index2.html">';
		} else { //OTHER
			tag += '';
		}
}
document.write(tag);
