<!--
function showHelpTip(e, s) {
	// find anchor element
	var el = e.target ? e.target : e.srcElement;
	while (el.tagName != "A")
		el = el.parentNode;
	
	// is there already a tooltip? If so, remove it
	if (el._helpTip) {
		document.body.removeChild(el._helpTip);
		el._helpTip = null;
		el.onblur = null;
		return;
	}

	// create element and insert last into the body
	var d = document.createElement("DIV");
	d.className = "help-tooltip";
	document.body.appendChild(d);
	d.innerHTML = s;
	
	// Allow clicks on A elements inside tooltip
	d.onmousedown = function (e) {
		if (!e) e = event;
		var t = e.target ? e.target : e.srcElement;
		while (t.tagName != "A" && t != d)
			t = t.parentNode;
		if (t == d) return;
		
		el._onblur = el.onblur;
		el.onblur = null;
	};
	d.onmouseup = function () {
		el.onblur = el._onblur;
		el.focus();
	};
	
	// position tooltip
	var dw = document.width ? document.width : document.documentElement.offsetWidth - 25;
	var scroll = getScroll();
	if (e.clientX > dw - d.offsetWidth)
		d.style.left = dw - d.offsetWidth + scroll.x + "px";
	else
		d.style.left = e.clientX - 2 + scroll.x + "px";
	d.style.top = e.clientY + 18 + scroll.y + "px";

	// add a listener to the blur event. When blurred remove tooltip and restore anchor
	el.onblur = function () {
		document.body.removeChild(d);
		el.onblur = null;
		el._helpTip = null;
	};
	
	// store a reference to the tooltip div
	el._helpTip = d;
}

// returns the scroll left and top for the browser viewport.
function getScroll() {
	if (document.body.scrollTop != undefined) {	// IE model
		var ieBox = document.compatMode != "CSS1Compat";
		var cont = ieBox ? document.body : document.documentElement;
		return {x : cont.scrollLeft, y : cont.scrollTop};
	}
	else {
		return {x : window.pageXOffset, y : window.pageYOffset};
	}
}
function go1(){
if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
parent.location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
	}
var Administration="<a href='logon.asp'>Logon</a> as another AMR Member.<br>"
var Registration="<a href='physicianreg.asp'>Physician Registration</a><br><a href='nonphysicianreg.asp'>Non-Physician Registration</a>";
var Situation="Help Menu<br><br><b>SSG</b>= Single Specialty Group<br><b>MSG</b>= Multispecialty Group<br><b>Ptr</b>= Partner<br><b>IMG</b>= International Medical Graduate";
var Listp="Help Menu<br><b>All Matching</b> - Display all matching results.<br><b>All My Jobs</b> - Display only my jobs and ignore all but Specialty<br><b>Ignore Criteria</b> - Ignore All but Specialty";
var Listc="Help Menu<br><b>All Matching</b> - Display all matching results.<br><b>All My Candidates</b> - Display only my Candidates and ignore all but Specialty<br><b>Ignore Criteria</b> - Ignore All but Specialty";
var sbid="<b>Search by ID</b><br><b>Note:</b> - This will ignore all other form entries."
// -->