/***** ftdAlsConference.ca - Developed by ScriptReaction - www.scriptreaction.com *****/

/********** shell items **********/
var shell = {
	init: function (){
		<!-- 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" />');
				return;
			}else{ // Opera, Safari, Firefox
				shell.browser = 'gecko';
				shell.browserId = 'gecko';
				return;
			}
		}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" />');
		}
	},
	als: function (){
		return;	
	},
	blank: function (x){
		window.open(x);	
	},
	winClose: function (){
		top.location = 'javascript:shell.als()';
		top.window.close();
	}
}

/********** shell init **********/
shell.init();