// JavaScript Document
var bar_indicator = '<img src="images/bar_indicator.gif" width="56" height="21" vspace="8">';
var bar_indicator2 = '<img src="images/bar_indicator.gif" width="56" height="21" hspace="8" align="absmiddle">';

var indicator = '<img src="images/indicator2.gif" width="16" height="16">';
var indicator_small = '<img src="images/white_indicator.gif"  width="16" height="16"/>';
var bulbStr = '<BLINK SPEED=500><img src="images/bulb2.png" width="14" height="16" align="absmiddle" hspace=8	></BLINK>';
var bulbBig = '<BLINK SPEED=500><img src="images/bulb.png" width="25" height="31" align="absmiddle" hspace=8	></BLINK>';


function makeTmpDiv(divname)
{

	var div = document.getElementById("dim");	
	var popDiv = document.createElement("DIV");
	popDiv.style.zIndex = 1;
	popDiv.setAttribute("id", divname);
	
	popDiv.style.width = "400px";
	popDiv.style.height = "250px";
	popDiv.style.backgroundColor= "white";
	popDiv.style.top 	= "30%";
	popDiv.style.left 	= "38%";
	popDiv.style.position	= "absolute";
	div.innerHTML = popDiv;
	div.appendChild(popDiv);

}

function emailPop(val)
{
	showDim('dim', 70, 20, '#000000', 'emailPop|'+val);	
}

function showSitemapSubCats(val, total)
{

for(var i=0; i<total; i++)
{
document.getElementById("td"+i).style.display = "none";
}
document.getElementById(val).style.display = "";

}