function GetFullImg(shade_id,product_id)
	{
		
		//alert(shade_id);
		//return false;
	var ajaxRequest; 	
	try
		{
		ajaxRequest = new XMLHttpRequest();
	   	}
	catch (e)
		{
		// Internet Explorer Browsers
		try
			{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
			}
		catch (e)
			{
			try
				{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
				}
			catch (e)
				{
				// Something went wrong
				alert("Your browser broke!");
				return false;
				}
			}
		}
	ajaxRequest.onreadystatechange = function()
		{
		var display_id='formproduct';
		if(ajaxRequest.readyState == 1)
			{
			document.getElementById('loading').innerHTML="<center>Loading...</center";	
			}
			
		if(ajaxRequest.readyState == 4)
			{			
			document.getElementById(display_id).innerHTML = ajaxRequest.responseText;
			}
		}
	var queryString = "&shadeid=" + shade_id + "&product_id=" + product_id ;
	ajaxRequest.open("GET", "action_ajax.php?option=2&include=form_product" + queryString, true);
	ajaxRequest.send(null); 
	}
	
//#######################################################################################


function ListProduct(product_id,pg_no)
	{
		
		//alert(pg_no);
		//return false;
	var ajaxRequest; 	
	try
		{
		ajaxRequest = new XMLHttpRequest();
	   	}
	catch (e)
		{
		// Internet Explorer Browsers
		try
			{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
			}
		catch (e)
			{
			try
				{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
				}
			catch (e)
				{
				// Something went wrong
				alert("Your browser broke!");
				return false;
				}
			}
		}
	ajaxRequest.onreadystatechange = function()
		{
		var display_id='productlist';
		if(ajaxRequest.readyState == 1)
			{
			document.getElementById('productlist_loading').innerHTML="<div align=\"center\">Loading Page no "+pg_no+"</div>";	
			}
			
		if(ajaxRequest.readyState == 4)
			{			
			document.getElementById(display_id).innerHTML = ajaxRequest.responseText;
			document.getElementById('productlist_loading').innerHTML="";
			}
		}
	var queryString = "&pg=" + pg_no + "&product_id=" + product_id ;
	ajaxRequest.open("GET", "action_ajax.php?option=2&include=product_list" + queryString, true);
	ajaxRequest.send(null); 
	}
	
//##########################################################################################