function kadabra(zap) {
if (document.getElementById) {
var abra = document.getElementById(zap).style;
if (abra.display == "block") {
abra.display = "none";
} else {
abra.display = "block";
}
return false
} else {
return true
} }



function goAway(me) {
if (document.getElementById) {
var tada = document.getElementById(me).style;
tada.display = "none";
}
}



function openPop(theId,theName) {
	document.write("<div class=\"contain\">");
	document.write("<div class=\"box\" id=\""+theId+"\" onmouseover=\"return kadabra('"+theId+"')\" onmouseout=\"return kadabra('"+theId+"')\">");
	/*document.write("<div class=\"box\" id=\""+theId+"\" onMouseOver=\"goAway('"+theId+"')\">");*/
	document.write("<div class=\"top\">");
	/*document.write("<p class=\"variety\">"+theName+" Varieties</p>");*/
}
function closePop() {
	document.write("</div>");
	document.write("<div class=\"bottom\"></div>");
	document.write("</div>");
	document.write("</div>");
	document.write("<br />");
}


function openDrop(DropId) {
	document.write("<a class=\"dropIt\" onclick=\"return kadabra('"+DropId+"')\" href=\"#"+DropId+" Link\" id=\""+DropId+"Link\">"+DropId+"</a>");
	document.write("<div class=\"dropMe\" id=\""+DropId+"\" style=\"display:none\">");
}
function closeDrop() {
	document.write("</div>");
}


function preLoad(one,two) {
	if (document.images)
		{
		  img1 = new Image();
		  img1.src=one;
		  
		  img2 = new Image();
		  img2.src=two;
		}
}
