﻿// pop-up pageglip
function flash (URL){ 
	var left = (window.screen.width / 2) - (620/2)
	var top = (window.screen.height / 2) - (440/2)
    window.open(URL,"janela1","width=620,height=440,scrollbars=NO, top=" + top +", left=" + left) 
} 

// aqui começa imagem no tamanho da janela 
count = 0;
count2 = 80;
pontinho= '|';
imagemVar='';

function precarrega(img,id){
imgVar = new Image();
imgVar.src = img;
imagemVar = img;
loadCheck(id);
}

function loadCheck(id){

if(imgVar.width >= screen.availWidth || imgVar.height >= screen.availHeight){
scrollVar="yes";
}
else{ scrollVar="no";
}

configura="width=500,height=500,resizable=no,top=50,scrollbars="+scrollVar+",left=150"

pop=window.open('../Pagina/Fotos.aspx?id=' + id,'',configura);

}
// aqui termina imagem no tamanho da janela  -->


// FUNCAO INSERIR FLASH
// DETECÇÃO DO FLASH PLAYER E COLOCAR FLASH VÁLIDO
// www.ajrdesign.net

/* -- 1. DETECÇÃO DA VERSÃO DO PLAYER -- */

// SETAR VERSÃO DO PLAYER
var MM_contentVersion = 6;

// SETAR SUB-VERSÃO
var release = "6,0,67,0";


// CHECAR SE EXISTE O PLAYER
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if (plugin) {
    var words = navigator.plugins["Shockwave Flash"].description.split(" ");
    for (var i = 0; i < words.length; ++i) {
        if (isNaN(parseInt(words[i])))
            continue;
        var MM_PluginVersion = words[i];
    }
    var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0
&& (navigator.appVersion.indexOf("Win") != -1)) {
    document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag 
    document.write('on error resume next \n');
    document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
    document.write('</SCR' + 'IPT\> \n');
}

/* -- Usada na página de banner -- */

function InserirFlash(swf, flashVarString, width, height, bgcolor, menu, mode, qualidade, id) {
    if (MM_FlashCanPlay) {
        document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
		+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + release + '" '
		+ 'width="' + width + '" height="' + height + '" id="' + id + '" align="">'
		+ '<param name="movie" value="' + swf + '">'
		+ '<param name="menu" value="' + menu + '"> '
		+ '<param name="quality" value="' + qualidade + '"> '
		+ '<param name="wmode" value="' + mode + '"> '
		+ '<param name="bgcolor" value="' + bgcolor + '"> '
		+ '<param name="flashvars" value="' + flashVarString + '"> '
		+ '<embed src="' + swf + '" flashvars="' + flashVarString + '" menu="' + menu + '" quality="' + qualidade + '" wmode="' + mode + '" '
		+ ' bgcolor="' + bgcolor + '" width="' + width + '" height="' + height + '" name="' + swf + '" '
		+ ' align="" type="application/x-shockwave-flash" '
		+ ' pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object> ');
    } else {

        //behaviour for if there is no flash player 
        document.write('É necessário o Flash Player ' + MM_contentVersion + ' ou superior para visualizar a animação. ');
        document.write('<em><a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">');
        document.write('Clique aqui para instalá-lo agora..</a></em>');

        //this can be replaced by anything you want 
        //e.g. document.location.replace("text.html"); 	
    }
}



