function chooseBrand() {
  txt = "<h2>Please select a brand</h2><br />\n";
  txt = txt + "<!-- Rotel Service Manuals -->\n";
  txt = txt + "<div class=\"float\">\n";
  txt = txt + "<img src=\"images/rotel.gif\" alt=\"rotel\" width=\"131\" height=\"65\" /><br />\n";
  txt = txt + "<div class=\"button1\">\n";
  txt = txt + "<div class=\"button2\">\n";
  txt = txt + "<div class=\"button3\">\n";
  txt = txt + "<a href=\"rotelservicemanuals.html\" title=\"Rotel Service Manuals\"><span class=\"buttonheader\">Rotel Service Manuals</span></a>\n";
  txt = txt + "</div>\n</div>\n</div>\n</div>\n";
  txt = txt + "<!-- B&W Service Manuals -->\n";
  txt = txt + "<div class=\"float\">\n";
  txt = txt + "<img style=\"margin-top:4px\" src=\"images/bw.jpg\" alt=\"bw\" width=\"103\" height=\"61\" /><br />\n";
  txt = txt + "<div class=\"altbutton1\">\n";
  txt = txt + "<div class=\"button2\">\n";
  txt = txt + "<div class=\"button3\">\n";
  txt = txt + "<a href=\"bwservicemanuals.html\" title=\"B&amp;W Service Manuals\"><span class=\"buttonheader\">B&amp;W Service Manuals</span></a>\n";
  txt = txt + "</div>\n</div>\n</div>\n</div>\n";
  txt = txt + "<!-- Classe Service Manuals -->\n";
  txt = txt + "<div class=\"float\" style=\"margin-right: 0\">\n";
  txt = txt + "<img style=\"margin-top:15px; margin-bottom:27px\" src=\"images/classe.jpg\" alt=\"classe\" width=\"162\" height=\"36\" /><br />\n";
  txt = txt + "<div class=\"button1\">\n";
  txt = txt + "<div class=\"button2\">\n";
  txt = txt + "<div class=\"button3\">\n";
  txt = txt + "<a href=\"classeservicemanuals.html\" title=\"Classe Service Manuals\"><span class=\"buttonheader\">Classe Service Manuals</span></a>\n";
  txt = txt + "</div>\n</div>\n</div>\n</div>\n";
 
  document.getElementById('target').innerHTML=txt;
}

function setDisclaimer(choice) {
	xmlHttp=GetXmlHttpObject();
 	if (xmlHttp==null) {
 		alert ("Browser does not support HTTP Request");
 		return;
  } 
	
	var tf="scripts/disclaimer.php";
	var tf=tf+"?choice="+choice;
	xmlHttp.onreadystatechange=function() {stateChanged("", xmlHttp);}
	xmlHttp.open("GET",tf,true);
	xmlHttp.send(null);
	
  if( choice == "agree" ) {
		chooseBrand();
  }
}