function deliverActiveX(content)
{
	document.write(content);	
}

function addlinetotxt(id) {
	//alert(id);
	document.getElementById("link_"+id).style.textDecoration="underline";
}

function remlinetotxt(id) {
	//alert(id);
	document.getElementById("link_"+id).style.textDecoration="none";
}