function putFrame(div){
	var f    = document.createElement("iframe");
	var d    = document.getElementById(div);
	f.setAttribute('id','iframeSpec');
	with(f.style){
		position	= "absolute";
	 	width    	= d.offsetWidth+"px";
	  //	height		= d.offsetHeight+"px";;
	  	height		= "400px";;
	 	top			= d.offsetTop+"px";
	  	left		= d.offsetLeft+"px";
	   	zIndex		= "1";
	}

	document.body.appendChild(f);
}

function closeFrame() {
	document.body.removeChild(document.getElementById("iframeSpec")) ;
}
