// JavaScript Document
function enviar(id_prod, id_color) {
	document.miform.id_prod.value=id_prod
	document.miform.id_color.value=id_color
	document.miform.submit()
	return false
}
function Marcas(producto,n_bola,max_bola) { 

  for(i=1; i<=max_bola; i++) {
    if (i==n_bola){
      prod='top'+i+producto;
      eval('document.'+prod+'.src="images/colors/color_selec_top.gif"');
	  prod='bottom'+i+producto;
	  eval('document.'+prod+'.src="images/colors/color_selec_bottom.gif"');
	  }else{
	  prod='top'+i+producto;
      eval('document.'+prod+'.src="images/1pix.gif"');
	  prod='bottom'+i+producto;
	  eval('document.'+prod+'.src="images/1pix.gif"');}
  }
}