function zADLib() {
	return(false);
}

zADLib.prototype.screenWidth = function() {
	var intWidth = screen.width;
	return(intWidth);
}

zADLib.prototype.location = function() {
	var intScreenWidth = this.screenWidth();
	
	if (intScreenWidth >= 1024) {	
		var objMenu = document.getElementById("layerRight");
		if (objMenu) {
			objMenu.style.left = 783;
			objMenu.style.visibility = "visible";
		}
	}
	
	return(false);
}