<!--// 
function ldMenu(cover) {
  var Indx = cover;
  
	with (document.instantquote.size) {
	document.instantquote.size.options.length=0;
	if (Indx==0) {
	options[0]=new Option("Size","");
	}
	if (Indx=="Soft Cover") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("5 x 8","5 x 8");
    options[2]=new Option("5.5 x 8.5","5.5 x 8.5");
    options[3]=new Option("6 x 9","6 x 9");
    options[4]=new Option("7 x 10","7 x 10");
    options[5]=new Option("8.25 x 10.5","8.25 x 10.5");            
	}
	if (Indx=="Hard Cover (Library Cloth)") {  
    options[0]=new Option("Choose One","0");
    options[1]=new Option("5.5 x 8.5","5.5 x 8.5");
    options[2]=new Option("6 x 9","6 x 9");
    options[3]=new Option("7 x 10","7 x 10");
    options[4]=new Option("8.25 x 10.5","8.25 x 10.5");  
	}
	if (Indx=="Hard Cover (Library Cloth with Dust Jacket)") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("5.5 x 8.5","5.5 x 8.5");
    options[2]=new Option("6 x 9","6 x 9");
    options[3]=new Option("7 x 10","7 x 10");
    options[4]=new Option("8.25 x 10.5","8.25 x 10.5");  
	}
	if (Indx=="Hard Cover (Case Laminate)") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("5.5 x 8.5","5.5 x 8.5");
    options[2]=new Option("6 x 9","6 x 9");
    options[3]=new Option("7 x 10","7 x 10");
    options[4]=new Option("8.25 x 10.5","8.25 x 10.5");  
	} 
	
	with (document.instantquote.binder) {
	document.instantquote.binder.options.length=0;
	if (Indx==0) {
	options[0]=new Option("Binder","");
	}
	if (Indx=="Soft Cover") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("Perfect","Perfect");
    options[2]=new Option("Plastic Comb","Plastic Comb");
	}
	if (Indx=="Hard Cover (Library Cloth)") {  
    options[0]=new Option("Choose One","0");
    options[1]=new Option("Perfect","Perfect");
	}
	if (Indx=="Hard Cover (Library Cloth with Dust Jacket)") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("Perfect","Perfect"); 
	}
	if (Indx=="Hard Cover (Case Laminate)") {
    options[0]=new Option("Choose One","0");
    options[1]=new Option("Perfect","Perfect");
	}  

	instantquote.binder.options[0].selected=true;
	instantquote.size.options[0].selected=true;
	}
	}
	

}

//-->