
buttonO=new Image
buttonO.src="../images/circleBtn1.gif"

buttonH= new Image
buttonH.src = "../images/btnHover1.gif"



// JavaScript functions to show/hide information

function showInfo(id){
	var ref = document.getElementById(id);
	ref.style.display="block";
}

function hideInfo(id){
	var ref = document.getElementById(id);
	ref.style.display="none";

} 

var newWindow=new Object;
newWindow.closed=true;

function imgPage (imageName, details)
{
	if (!newWindow.closed){
		newWindow.close();
	}
	
	var window_features="width=500,height=500,status=0,menubar=0,toolbar=0,menubar=0,scrollbars=1,resizable=1";
	var pgTitle="HealingThruSpirit.com Store, Contact Beverly Chapman";
	var spanDetail="<span><a href=\"#\" onclick=\"self.close();\">Close Window</a></span>"
	var footDetail="<div id=\"footer\"><b>Healing Thru Spirit</b> Beverly Chapman</div>";
	newWindow=window.open("","",window_features);
	newWindow.document.write("<html><head><title>" + pgTitle + "</title>");
	newWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../storeCU.css\" />");
	newWindow.document.writeln("</head><body>");
	newWindow.document.writeln("<div id=\"picImage\">");
	newWindow.document.writeln("<img src=\"" + imageName + "\" alt=\" " + details + "\" title=\" "+details + "\" />");
	newWindow.document.writeln("<p>" + details + "</p>");
	newWindow.document.writeln(spanDetail);
	newWindow.document.writeln(footDetail);
	newWindow.document.write("</div>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.focus();
}

function imgPage2 (imageName,details, imageName2, details2)
{
	if (!newWindow.closed){
		newWindow.close();
	}
	
	var window_features="width=500,height=500,status=0,menubar=0,toolbar=0,menubar=0,scrollbars=1,resizable=1";
	var pgTitle="HealingThruSpirit.com Store, Contact Beverly Chapman";
	var spanDetail="<span><a href=\"#\" onclick=\"self.close();\">Close Window</a></span>"
	var footDetail="<div id=\"footer\"><b>Healing Thru Spirit</b> Beverly Chapman</div>";
	newWindow=window.open("","",window_features);
	newWindow.document.write("<html><head><title>" + pgTitle + "</title>");
	newWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../storeCU.css\" />");
	newWindow.document.writeln("</head><body>");
	newWindow.document.writeln("<div id=\"picImage\">");
	newWindow.document.writeln("<img src=\"" + imageName + "\" alt=\" " + details + "\" title=\" "+details + "\" />");
	newWindow.document.writeln("<p>" + details + "</p>");
	newWindow.document.writeln("<img src=\"" + imageName2 + "\" alt=\" " + details2 + "\" title=\" "+details2 + "\" />");
	newWindow.document.writeln("<p>" + details2 + "</p>");
	newWindow.document.writeln(spanDetail);
	newWindow.document.writeln(footDetail);
	newWindow.document.write("</div>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.focus();
}

