/****************************************
|
| Advance Manufacturing Technologies Inc
| Created by: Kevin Biskaborn
| Copyright 2009 ScriptReaction
| http://www.scriptreaction.com
|
****************************************/

var shell = {
	init: function (){
		global.level = top.global_level;
		global.ref = top.global_ref;
		<!-- browser specific -->
		if(window.XMLHttpRequest){
			if(window.ActiveXObject){ // IE 7
				shell.browser = "ie";
				shell.browserId = "ie7";
				document.write('<link href="assets/css/global_fixIE7.css" rel="stylesheet" type="text/css" />');
			}else{ // Opera, Safari, Firefox
				shell.browser = "gecko";
				shell.browserId = "gecko";
			}
		}else{ //IE 6 and below
			shell.browser = "ie";
			shell.browserVersion = 6;
			shell.browserId = "ie6";
			document.write('<link href="assets/css/global_fixIE6.css" rel="stylesheet" type="text/css" />');
		}
		<!-- all browsers -->
		/*var scripts = document.getElementsByTagName("script");
		for(var i=0; i<scripts.length; i++){
			var whichScript = scripts[i];
			var scriptSrc = whichScript.src;
			if(scriptSrc.search(/shell.js/) >= 1){
				var scriptParams = scriptSrc.split("?");
				global.level = scriptParams[1];
				break;
			}
		}*/
	}
}
/********** shell init **********/
shell.init();