function popupthis(status)
	{
	cleanupFields();
	setTimeout("showAddressLookUp(true)",300);
	}
	function showAddressLookUp(status){
	var divElement = document.getElementById("addLookDrop");
        var IfrRef = document.getElementById("iframe");
        if (status==true){
		IfrRef.style.zIndex = 1 
		divElement.style.zIndex = 2
		IfrRef.style.display = "block";
		divElement.style.display="block";
		
		IfrRef.style.width = 0//((document.getElementById("addLookDrop").offsetWidth))
		IfrRef.style.height = (((document.getElementById("addLookDrop").offsetHeight)-15))
		IfrRef.style.top = ((document.getElementById("addLookBase").offsetTop)+'px');
		IfrRef.style.left = ((document.getElementById("addLookBase").offsetLeft)+'px');
        //alert(IfrRef.style.top+IfrRef.style.left);
        divElement.style.position="absolute";
		divElement.style.visibility="visible";
		IfrRef.style.position="absolute";
		
		divElement.style.left=((document.getElementById("addLookBase").offsetLeft)+'px');
		divElement.style.top=((document.getElementById("addLookBase").offsetTop)+'px');
		//alert(divElement.style.left+divElement.style.top);
		
	}else{
		divElement.style.visibility="hidden";
		IfrRef.style.display = "none";

	}
        }