// abre janela pop-up
var win= null;
function popupcenter(mypage,myname,w,h,scroll,maximizar){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable='+maximizar;
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

// function abre submenu
function abre_sub(id){
	if (document.getElementById(id).style.display == '' || document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = 'block';
	} else {
		document.getElementById(id).style.display = 'none';	
	}
}

// troca imagem grande da pop-up de detalhes de imagem dos produto.
function troca_imagem(src){
	document.getElementById('img_g').src = 'img/produtos/g/'+src;
}

function flash_banner(arquivo, largura, altura){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+largura+'" height="'+altura+'" id="banner_flash">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="/banner/'+arquivo+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="/banner/'+arquivo+'" quality="high" width="'+largura+'" height="'+altura+'" name="banner_flash" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}