function show(fieldvalue) {
switch(fieldvalue)
{
case 1:
document.getElementById("business").innerHTML = "<table border=0 cellspacing=0 cellpadding=0 width=300><tr style='font-family:arial;font-size:11px;color:white'><td width=93 align=right>Business Name:</td><td width=5></td><td><input type=text size=25 name=bname></td></tr></table>";
break;
case 2:
document.getElementById("business").innerHTML = "";
break;

case 3:
document.getElementById("business").innerHTML = "<table border=0 cellspacing=0 cellpadding=0 width=300><tr style='font-family:arial;font-size:11px;color:white'><td width=125 align=right>Business Name:</td><td width=5></td><td><input type=text size=25 name=bname></td></tr></table>";
break;

}
}
