function change_product_fields(height,product_name,product_title,product_desc,picture_title,specifications,pic_link,pic_width,pic_height,pic_alt,link_aff,bottom_desc) /*product_name,product_title,product_desc,picture_title,specifications,pic_link,pic_alt,link_aff,bottom_desc*/
{
    document.getElementById('all_products_height').height=height;    
    document.getElementById('product_name').innerHTML=product_name;
    document.getElementById('all_products_product_title').innerHTML=product_title;
    document.getElementById('all_products_product_desc').innerHTML=product_desc;
    document.getElementById('largeImageCaption').innerHTML=picture_title;
    document.getElementById('all_products_specifications').innerHTML=specifications;
    document.getElementById('all_products_img').src=pic_link;    
    document.getElementById('all_products_img').width=pic_width;
    document.getElementById('all_products_img').height=pic_height;        
    document.getElementById('all_products_img').alt=pic_alt;    
    document.getElementById('all_products_img_href').href=link_aff;    
    document.getElementById('all_products_bottom_desc').innerHTML=bottom_desc;    
    
    document.getElementById('all-products_order_now').href=link_aff;
    document.getElementById('all-products_more_details').href=link_aff;
}
