function adcouplet(divid){
	var a=document.getElementById(divid);	
	a.style.pretop=100;
	a.style.top=a.style.pretop;
	a.style.left=document.body.scrollLeft+10;
	var b = document.createElement("div");
	b.innerHTML=a.innerHTML;
	b.style.position="absolute";	
	b.style.border = a.style.border="1px solid #fff";
	b.id=divid+"ex";
	b.style.top=a.style.pretop;
	b.style.zIndex=2;	
	b.style.left=document.body.scrollLeft+document.body.clientWidth-a.offsetWidth-10;
	document.body.appendChild(b);
	setInterval("adcouplet2('"+divid+"')",500);
}
function adcouplet2(divid){
	var a=document.getElementById(divid);
	var b=document.getElementById(divid+"ex");
	a.style.top=document.body.scrollTop+100;
	a.style.left = document.body.scrollLeft+10;
	b.style.left=document.body.scrollLeft+document.body.clientWidth-a.offsetWidth-10;
	b.style.top=document.body.scrollTop+100;
}
