function setCustomToBOM() {
 var aux;
 if (aux=getObj('introText')) aux.innerHTML=aux.prevHTML.replace('ABCevents','Best of Mice');
 if (aux=document.form1.TARGET) {
 	var opt=aux.options[aux.options.length-1];
 	aux.options.length=0;
 	aux.options.add(opt);
 	aux.value='bom';
 }
 QueryString.t='bom';
}

chainOnload(function() {
// if ((location.hostname=='www.bestofmice.com') || (QueryString.t=='bom')) setCustomToBOM();
 var t;
 if ((t) || (t=QueryString.t)) document.form1.TARGET.value=t;
 if (t=QueryString.p) document.form1.PHONE.value=t;
 if (t=QueryString.n) document.form1.NAME.value=t;
 if (t=QueryString.e) document.form1.EMAIL.value=t;
 if (t=QueryString.c) document.form1.COMMENTS.value=t;
});

