

function AjaxPagenation(page)
{
	//alert(page);
	//alert(str);
	 xmlhttp=GetXmlHttpObject();
    if (xmlhttp==null) {
        alert ("Your browser does not support AJAX!");
        return;
    } 
    var url="ajax_php.php";
		url=url+"?page="+page;
		url=url+"&jsid"+Math.random();
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") {
					document.getElementById("pagenation").innerHTML=xmlhttp.responseText;	
        }
				else
				{
					document.getElementById('pagenation').innerHTML="<div style=\'padding-left:400px;padding-top:200px;\'><img src=\'js/loader.gif\'></div>";	
				}
    }
    xmlhttp.open("GET",url,true);
    xmlhttp.send(null);

}



function AjaxPagenationforCategoryWiseView(page,id)
{
	//alert(page);
	//alert(str);
	 xmlhttp=GetXmlHttpObject();
    if (xmlhttp==null) {
        alert ("Your browser does not support AJAX!");
        return;
    } 
    var url="ajax_for_category_wise_view.php";
		url=url+"?page="+page;
		url=url+"&id="+id;
		url=url+"&jsid"+Math.random();
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") {
					document.getElementById("pagenation").innerHTML=xmlhttp.responseText;	
        }
				else
				{
					document.getElementById('pagenation').innerHTML="<div style=\'padding-left:470px;padding-top:225px;\'><img src=\'js/loader.gif\'></div>";	
				}
    }
    xmlhttp.open("GET",url,true);
    xmlhttp.send(null);

}




function AjaxPagenationforSuperCategoryWiseView(page,id)
{
	
	//alert(page);
	//alert(str);
	 xmlhttp=GetXmlHttpObject();
    if (xmlhttp==null) {
        alert ("Your browser does not support AJAX!");
        return;
    } 
    var url="ajax_for_super_cat_wise_view.php";
		url=url+"?page="+page;
		url=url+"&id="+id;
		url=url+"&jsid"+Math.random();
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") {
					document.getElementById("pagenation").innerHTML=xmlhttp.responseText;	
        }
				else
				{
					document.getElementById('pagenation').innerHTML="<div style=\'padding-left:470px;padding-top:225px;\'><img src=\'js/loader.gif\'></div>";	
				}
    }
    xmlhttp.open("GET",url,true);
    xmlhttp.send(null);

}






function BigImageSelector(str,t_name,s_name,s_link)
{
	
	document.getElementById('BigImg').src="images/product/subcat/"+str;
	//alert(s_link);
	document.getElementById("Info_template").innerHTML="<tr><td>&nbsp;</td><td>"+s_name+"</td></tr><tr><td>&nbsp;</td><td>"+t_name+"</td></tr><tr><td>&nbsp;</td><td><a href="+s_link+" target=\'_blank\'>View Site</a></td></tr>";	
	
}

function GetXmlHttpObject() {
    var xmlhttp=null;
    try {
        // Firefox, Opera 8.0+, Safari
        xmlhttp=new XMLHttpRequest();
    }
    catch (e) {
        // Internet Explorer
        try {
            xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch (e) {
            xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
    return xmlhttp;
}

