
	
	    //Pull in the contents of the querystring
		var qs = new Querystring()
		//Set the following to null
        var strPics = null;
        //Get the value of the querystring
		var id = qs.get("id");
		//Check to see which gallery is going to be pulled in
		switch (id) {
		    case 'mar18': strPics = './HabitatPics/March18/march18data.htm';
		            break;
		    case 'mar19': strPics = './HabitatPics/March19/march19data.htm';
		         break;
		    case 'mar20': strPics = './HabitatPics/March20/march20data.htm';
		         break;
            case 'mar27': strPics = './HabitatPics/March27/march27data.htm';
		         break;							         
		    case 'apr1': strPics = './HabitatPics/April1/april1data.htm';
		         break;
		    case 'apr2': strPics = './HabitatPics/April2/april2data.htm';
		         break;
		    case 'apr3': strPics = './HabitatPics/April3/april3data.htm';
		         break;
			case 'apr26': strPics = './HabitatPics/April26/april26data.htm';
		         break;
			case "may3": strPics = './HabitatPics/may3/may3data.htm';
				 break;
			case "may10": strPics = './HabitatPics/may10/may10data.htm';
				 break;				 
			case "may20": strPics = './HabitatPics/may20/may20data.htm';
				 break;	
			case "june17": strPics = './HabitatPics/june17/june17data.htm';
				 break;	
			case "july21": strPics = './HabitatPics/july21/july21data.htm';
				 break;				 

		    case 'all': strPics = './HabitatPics/alldata.htm';
		        break;
            //Default gallery shown, can be the most recent, or all of the pictures that are in the gallery.		        
		    default: strPics = './HabitatPics/july21/july21data.htm';
		         break;
		}
		//Pull in the gallery
		getHTML(strPics);











