// JavaScript Document

function checkForIE() {
	if(typeof document.all != "undefined" && typeof document.getElementById != "undefined") {
			return true;
	}
	else return false;
}

if(checkForIE() == true) {
	document.write('<script src="Scripts/growshrink.js" type="text/javascript"></script>\n');
}

if(checkForIE() == false) {
	document.write('<script src="Scripts/growshrink2.js" type="text/javascript"></script>\n');
}

