function showAddMessage(id, qtyMsg){
	//tb_remove();
	
	tb_show('',APP_URL+"/modules/products/productAdded.pop.php?id="+id+"&amp;qtyMsg="+qtyMsg+"&amp;height="+270+"&amp;width="+460+"&amp;TB_iframe=true&amp;keepThis=true");
	$.post(APP_URL+'/modules/products/productActions.ajx.php', {mode:'cartValues'},
				function(response){
					$('#cartDashBoard').html(response);
				});
	
}
function showColorImage(id, image,title){
	$('#Img_'+id).attr('src',image);
	$('#Img_'+id).prev().attr('title',title);
	$('#Img_'+id).prev().attr('alt',title);
	
	
	
}

