/**
Javascript/AJAX page app

Coded By: Edward Boot
Last Updated: May 28, 2009

This file loads the photo gallery images and
categories.
**/

// Loads the blog title
function LoadGallery(view, category, photo_id) {
    var xmlHttp;
    try {
        // Firefox, Opera 8.0+, Safari
        xmlHttp = new XMLHttpRequest();
    }
    catch (e) {
        // Internet Explorer
        try {
            xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch (e) {
            try {
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e) {
                alert("Your browser does not support AJAX!");
                return false;
            }
        }
    }
    xmlHttp.onreadystatechange = function() {
        if (xmlHttp.readyState == 2) {
            document.getElementById("ajax").innerHTML = '<img src="http://sedativechunk.com/Layout/Graphics/ajax-loader.gif" alt="" />';
        }
        if (xmlHttp.readyState == 4) {
            document.getElementById("ajax").innerHTML = xmlHttp.responseText;
        }
    }
    var url = "page.php?page_id=2&view=" + view + "&category=" + category + "&photo_id=" + photo_id;
    xmlHttp.open("GET", url, true);
    xmlHttp.send(null);
}