// FUNÇÃO QUE CONTROLA O COMBO DE ACESSO AOS PRODUTOS
startList = function() {
	if (document.all&&document.getElementById("comboProd")) {
		navRoot = document.getElementById("comboProd");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

// Submenu
startList = function() {
	if (document.all&&document.getElementById("Submenu")) {
		navRoot = document.getElementById("Submenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;


// FUNÇÃO QUE ABRE A JANELA DE PRODUTOS
function acessaProd(valorID){
	if(valorID != 0){
		window.open('/controle_acesso/chama_produto.asp?prod_liberado='+valorID,'Produto','toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=780,height=500,top=50,left=150');
	}
}

//submenu menu esquerdo
function abrirSubMenu(tipo)  {
	obj=document.getElementById("submenu");
	obj.style.display=(tipo=="1")?"":"none";
}
function abrirSubMenuCD(tipo)  {
	obj=document.getElementById("submenuCD");
	obj.style.display=(tipo=="1")?"":"none";
}

//flash
function embeds(url,w,h){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+w+'" height="'+h+'">');
document.write('<param name="movie" value="'+url+'">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="menu" value="false">');
document.write('<embed src="'+url+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed>');
document.write('</object>');
}
