function change_color(select,txt_color)
{
 txt_color.value=select.value;
 
}
function  change_price(select,txt_price,txt_size)
{
 txt_price.value=select.value;
 var txt_format=txt_price.value;
 
 if(txt_format.indexOf(".",1)<= 0 )
  {   
                                             
    txt_format=txt_format+".00";
    
  }                                     
 else
  {
      var intdotcount;
      intdotcount=txt_format.indexOf(".",1);
     
     if(txt_format.indexOf("",intdotcount+1)<0)
     {
     txt_format=txt_format+"0";
     }
     
      if(txt_format.indexOf("",intdotcount+2)<0)
      {
          txt_format=txt_format+"0";
      }
  }
  txt_price.value=txt_format;
 txt_size.value=select.options[select.selectedIndex].innerText;
 
}
function fun_add_cart_submit(forms1)
{
 var str= 'window.document.'+ forms1+'.submit()';
 str
 }
 function fun_change_cate(int_cate,int_type,int_pagenumber)
 {
   window.location='beau_prod.asp?int_cate='+int_cate;
  }
  
  function validate_empty()
  {
   if (str_session!='')
   { 
    return true;
    }
    else
    {
     alert('Basket is Empty');
     return false;
     }
     return false;
  }
