// JavaScript Document
<!--HIDE FROM JACKED UP BROWSERS

function checkMarket(theform) {


if (theform.marketid.value=="0") {
theform.marketid.style.background="#ffff00";
alert ("You must choose a Market");
theform.marketid.focus();
return (false);
}


return (true);
}


-->