/* "Choose Your Business Type" drop-down menu */
function MM_jumpMenu(targ,selObj,restore)
{ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

/* To open content in custom sized windows */
function runWizard(w,h,content)
{
	NewWindow = window.open(content,null,"height="+h+",width="+w+",status=no,toolbar=no,resizable=yes,menubar=no,location=no,scrollbars=yes");
}

/* Clear default form text on focus */

function clearDefaultandCSS(el)
{
	if (el.defaultValue==el.value) el.value = ""
	// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}