// inserir impressos


function showImg(obj){
	img = obj.src;
	img = img.replace('thumb','img');
	pop('impresso.html?' + img, 1024, 768);
}

function showImgContent(){
	fileImg = location.search.replace('?', '');
	strImg  = '<table onclick="window.close();" width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" bgcolor="#ffffff">';
	strImg += '<img class="imgBtn" src="' + fileImg + '" alt="" border="0">';
	strImg += '</td></tr></table>';
	document.write(strImg);
}


// inserir videos

function showVideo(nome)
{
	var video = nome + ".wmv";
	pop('video.html?' + video, 420, 380);
}

	
function showVideoContent(){
	
	fileVd = 'movies/' + location.search.replace('?', '') ;

	strVd = '<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" bgcolor="#000000">';

	strVd += '<embed scale="aspect" kioskmode type="video/quicktime" src="' + fileVd + '" width="320" height="240" autoplay="true" console="playerConsole" />';
	strVd += '</td></tr></table>';

	document.write(strVd);
}




// inserir flash


function showFlashGrande(nome)
{
	var flash = "internet/" + nome + "/index.html";
	
	pop( flash, 820, 540);
	
}



function showFlash(nome)
{
	var flash = "internet/" + nome + "/index.html";
	
	pop( flash, 760, 420);
	
}


function showFlashBanner(nome)
{
	var flash = "internet/" + nome + "/index.html";
	
	pop( flash, 762, 236);
	
}



// funcao emailmkt

function showMail(obj){
	img = obj.src;
	img = img.replace('thumb','img');
	popScr('internet/fla07/index.html?' + img, 400, 400);
}




// funcao para mudar o mouse

function overSeta(estado,arquivo,qual) {
	var obj = eval(arquivo);
	
	if(qual=='right') {
		if (estado=='0') {
			obj.src = "images/ico_setinha_normal.gif";
		} else {
			obj.src = "images/ico_setinha_over.gif";
		}
	} else {
		if (estado=='0') {
			obj.src = "images/ico_setinha_left_normal.gif";
		} else {
			obj.src = "images/ico_setinha_left_over.gif";
		}
	}

	
}


//scrollbars=yes,

function pop(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
    janelinha = window.open(x,'fundo','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
}

function popScr(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
    janela = window.open(x,'fundo','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=yes,top='+t+',left='+l+',screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
}

