// JavaScript Document
function IsIE7() {
var browser = navigator.userAgent;
var is = browser.indexOf('MSIE 7');
if (is != -1){
	return true;
}
else{
	return false;
	}
}
