	function DSlider(direction) {
			if  (!direction) {
				direction = 1;
			}
			
			if(document.getElementById("popupsTwo")) {
				var slider = setInterval(function() {
					with (document.getElementById("popupsTwo")) {
						var offset = (style.left.replace("px", "") - (screen.availWidth - 600)) / 10
						offset = (offset < 1)? 1 : offset;
						style.left = (style.left.replace("px", "") - offset * direction)+ "px";
						if ((style.left.replace("px", "") < (screen.availWidth - 600)) || style.left.replace("px", "") > screen.availWidth) {
							clearInterval(slider);
						}
					}
				}, 100);
			}
		}
		try {
			var interval = setInterval(
				function() {
				with (document.getElementById("popupsTwo")) {
					style.display = "inline";
					style.top = 220 + "px";
					style.left = screen.availWidth + "px";
					DSlider();
				}
				clearInterval(interval);
			}, 100);
		} catch(ex) {
			alert(ex);
	}
