//-----POPUPS E PROMPTS-----

// Adicinal Lightbox Flash

function lightboxflash(img,titulo,ww,hh) {
        var img_flash = document.createElement("A");
        img_flash.rel = "lightbox";
        img_flash.href = img;
        img_flash.title = titulo;
		if (typeof ww != 'undefined'){
			img_flash.setAttribute('width',ww);
		}
		if (typeof hh != 'undefined'){
			img_flash.setAttribute('height',hh);
		}
        myLightbox.start(img_flash);
        img_flash = null;
    }

// abrir pop up centralizado
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function projetos() {
	NewWindow('projetos/index.html','FernandaPodolsky','650','450','no')
}