// JavaScript Document

function galeria( id, pasta, fim, alt ) {
	var div = document.getElementById( id );
	div.innerHTML = "";
	for( var i=1; i <= fim; i++ ) {
		ii = ( i < 10 ) ? ( '0' + i ) : ( i );
		div.innerHTML += '<a href="'+pasta+'/'+ii+'.jpg" target="_blank" title="Zoom" class="highslide" onclick="return hs.expand (this)"><img src="'+pasta+'/thumb_'+ii+'.jpg" alt="'+alt+'"></a>';
	}
}


if (window != top) top.location.href = location.href;
// Proibe clicar com o "segundo" botao
function click() {
if (event.button==2) {
alert('Entre em contato com o departamento comercial.')
}
}
document.onmousedown=click

