/*
 randam dispaly for intel PC catalog

*/

	max = products_text.new_products_pc.length;
	buf = new Array();
	for ( i = 0 ; i < max ; i++ ){
		products_text.new_products_pc[i].is_update = 0;
		buf[i]=i;
	}
	for ( i = 0 ; i < max ; i++ ){
		j = Math.floor(Math.random() * max );
		keep = buf[j];
		buf[j] = buf[i];
		buf[i] = keep;
    }
	for ( i = 0 ; i < 6 ; i++ ){
		products_text.new_products_pc[buf[i]].is_update = 1;
	}

	max = products_text.new_products_note.length;
	buf = new Array();
	for ( i = 0 ; i < max ; i++ ){
		products_text.new_products_note[i].is_update = 0;
		buf[i]=i;
	}
	for ( i = 0 ; i < max ; i++ ){
		j = Math.floor(Math.random() * max );
		keep = buf[j];
		buf[j] = buf[i];
		buf[i] = keep;
	}
	for ( i = 0 ; i < 6 ; i++ ){
		products_text.new_products_note[buf[i]].is_update = 1;
	}

