﻿// 
// Script: Simbolos
//
var f;

function onLoad() {

    // Set optimal DIV size
    document.getElementById("flashcontent").style.height = (screen.height - 300) + "px";

    f = new SWFObject("postcardViewer.swf", "viewer", "100%", "100%", "8", "#222222");
    OpenGallery(1);
}

function OpenGallery(galleryNumber) {

    var Name = "gallery-Simbolos-" + galleryNumber
    
    // Open's a gallery
    // SIMPLEVIEWER CONFIGURATION OPTIONS
    // To use an option, uncomment it by removing the "//" at the start of the line
    // For a description of config options, go to: 
    // http://www.airtightinteractive.com/simpleviewer/options.html
	
    f.addVariable("langOpenImage", "Abrir imagem em nova janela");
    //f.addVariable("langAbout", "About");
    f.addVariable("xmlURL", "Resources/Simbolos/" + Name + "/" + Name + ".xml");
    
    f.write("flashcontent");
}
