function HideForm(){
	try{
		Prod.style.display="none";
	}catch(e){
	}
}
function ShowForm(){
	try{
		Prod.style.display="";
	}catch(e){
	}
}

function Toggle(e){
	if (e.style.display == "none"){
		e.style.display = "";
	}else{
		e.style.display = "none";
		}
	}

function ShowMe(e){
	var nCount=4;
	if (document.readyState == "complete"){
		for (var i=1;i<nCount;i++)
			{
			sName= "document.all.Pop"+i+".style.display='none'";
			eval(sName);
			}
		e.style.display="";
	}else{
		mytimeout = setTimeout("HideAll()",500);
	}
}

function HideAll(){
	var nCount=4;
	if (document.readyState == "complete"){
		for (var i=1;i<nCount;i++)
			{
			sName= "document.all.Pop"+i+".style.display='none'";
			eval(sName);
			}
	}else{
	mytimeout = setTimeout("HideAll()",500);
	}
}


function inText() {
    CatIcon.innerText = "5";
}
function ShowCat() {
	if (document.readyState == "complete"){
		if (document.all.CategoryList.style.display == "none") {
			document.all.CategoryList.style.display = "";
			CatIcon.innerText = "6";
		} else {
			document.all.CategoryList.style.display = "none";
			CatIcon.innerText = "4";
		}
	}else{
		mytimeout = setTimeout("ShowCat()",500);
	}
}
function ShowKey() {
	if (document.readyState == "complete"){
		if (document.all.KeySites.style.display == "none"){
			document.all.KeySites.style.display = "";
			KeyIcon.innerText = "6";
		}else{
			document.all.KeySites.style.display = "none";
			KeyIcon.innerText = "4";
		}
	}else{
		mytimeout = setTimeout("ShowKey()",500);
	}
}
function SetNeeds(){
		var cIndex=document.all.NeedsSelect.value;
		if (cIndex != ""){
			top.location.href = cIndex;
		}
	}
function ShowMenu(e){
hometab.style.display = "none";
e.style.display = "";
}




