<!--


var ie4=document.all?true:false;
var ns4=document.layers?true:false;
var ns6 = (document.getElementById&&!document.all) ? true : false;




var jsTools = {
	
	
	getbyid : function(id) {
		itm = null;
		if (document.getElementById) {
			itm = document.getElementById(id);
		}
		else if (document.all)	{
			itm = document.all[id];
		}
		else if (document.layers) {
			itm = document.layers[id];
		}
		
		return itm;
		
	},
	
	Redirect : function(url) {
		var e = null;
		var bShift = false;
		
		e = window.event;
		if(e) {
			bShift = e.shiftKey;
		}
		
		if (bShift) {
			window.open(url);
		} else {
			window.location = url;
		}
		
	},
	
	
	
	
	
	
	
	
	///////////////// DIV ////////////////////////
	showDiv : function(id) {
		jsTools.getbyid(id).style.display = 'block';
	},
	
	
	hideDiv : function(id) {
		jsTools.getbyid(id).style.display = 'none';
	}
	
}


	
	

// -->