function doLeadConversion() {

	/* fresh page load? not sure what is meant by that, but preserved
		from original comments anyway next few lines check for a value in
		WebDexUDRForm, which as far as I can tell could ** never ** exist
	*/

	if(document.WebDexUDRForm.visited.value == "") {
		udrDate = new Date();
		udrDate = udrDate.getTime();
		document.WebDexUDRForm.visited.value = udrDate;
	}
	
	/* make a new div and insert our special hit tracking image */
	var $tmp = document.createElement("DIV");
	$tmp.id = "udrdiv";
	try {
		$(document.body).insert({"bottom":$tmp});
	} catch(e) {
		$(document.documentElement).insert({"bottom":$tmp});
	}
	$udrdiv = $("udrdiv");

	$udrdiv.insert({"bottom":'<IMG border=0 hspace=0 vspace=0 width=1 height=1 src="https://loc1.hitsprocessor.com/confirmation.asp?acct=innovationmedspa&type=49153&s=203&uniqueId=YOUR-UNIQUE-ID&orderAmount=YOUR-ORDER-AMOUNT">'});
	
	$udrdiv.insert({"bottom":'<img height="1" width="1" border="0" src="http://www.googleadservices.com/pagead/conversion/1065871411/?label=us3cCMXZaxCz0J_8Aw&amp;script=0"/>'});
		
	
}