function replace(id,style) {

	var hideBTN = document.getElementById(id);
	hideBTN.style.visibility = "hidden";
	hideBTN.style.display = "none";

	if (!style || style == "" || style == "default") style = "pdalogic";
	var tabindex = 13;

	document.open();
	document.write("<a class=\"formbutton\" href=\"javascript:document.getElementById('" + id + "').click();\" onmouseover=\"window.status=''; return true;'\" tabindex=\"" + hideBTN.tabIndex + "\"><img src=\"images/" + style + id + "75x75.gif\" width=\"75\" height=\"75\" border=\"0\" alt=\"Form Control " + id + "\" /></a>");	
	document.close();
}