function indexBuildPage()
{
	var parentTd;
	var tempA;
	var tempImg;
	
    commonBuildPageWithoutStandardContent();
    window.onresize = indexResizeHandler;
    
    parentTd = document.getElementById("mainTableMiddleCenterCell");
    parentTd.innerHTML = "";
    
	tempA = document.createElement("a");
	tempA.setAttribute("href", "home.php");
	parentTd.appendChild(tempA);
	
	tempImg = document.createElement("img");
	tempImg.setAttribute("id", "allianceMineralsSplashImage");
	tempImg.setAttribute("src", "images/alliancemineralssplash.jpg");
	tempImg.setAttribute("alt", "Alliance Minerals North America");
	tempA.appendChild(tempImg);

}

function indexResizeHandler()
{
    commonResizeHandler();
}
