this.blankwin=function(){var hostname=window.location.hostname;hostname=hostname.replace("www.","").toLowerCase();var a=document.getElementsByTagName("a");this.check=function(obj){var href=obj.href.toLowerCase();return(href.indexOf("http://")!=-1&&href.indexOf(hostname)==-1)?true:false;};this.set=function(obj){obj.target="_str8";obj.className="external";};for(var i=0;i<a.length;i++){if(check(a[i]))set(a[i]);};};this.addEvent=function(obj,type,fn){if(obj.attachEvent){obj['e'+type+fn]=fn;obj[type+fn]=function(){obj['e'+type+fn](window.event);}
obj.attachEvent('on'+type,obj[type+fn]);}else{obj.addEventListener(type,fn,false);};};addEvent(window,"load",blankwin);function Validator(theForm)
{if(theForm.qf.value=="First Name")
{alert("Add a first name please.");theForm.qf.focus();return(false);}
if(theForm.qf.value=="")
{alert("Add a first name or initial.");theForm.qf.focus();return(false);}
if(theForm.qn.value=="Last Name")
{alert("Add a last name first.");theForm.qf.focus();return(false);}
if(theForm.qn.value=="")
{alert("Add a Last Name to start your search.");theForm.qn.focus();return(false);}
pageTracker._trackEvent('Form','Submit');return(true);}
var ALERT_TITLE="Something Is Missing!";var ALERT_BUTTON_TEXT="Close";if(document.getElementById){window.alert=function(txt){createCustomAlert(txt);}}
function createCustomAlert(txt){d=document;if(d.getElementById("modalContainer"))return;mObj=d.getElementsByTagName("body")[0].appendChild(d.createElement("div"));mObj.id="modalContainer";mObj.style.height=document.documentElement.scrollHeight+"px";alertObj=mObj.appendChild(d.createElement("div"));alertObj.id="alertBox";if(d.all&&!window.opera)alertObj.style.top=document.documentElement.scrollTop+"px";alertObj.style.left=(d.documentElement.scrollWidth-alertObj.offsetWidth)/2+"px";h1=alertObj.appendChild(d.createElement("h1"));h1.appendChild(d.createTextNode(ALERT_TITLE));msg=alertObj.appendChild(d.createElement("p"));msg.innerHTML=txt;btn=alertObj.appendChild(d.createElement("a"));btn.id="closeBtn";btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT));btn.href="#";btn.onclick=function(){removeCustomAlert();return false;}}
function removeCustomAlert(){document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer"));}