// JavaScript Document
function estagio(form) { 
	var newIndex = form.faculdade.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Escolha a Universidade!" ); 
	} else { 
		cururl = form.faculdade.options[ newIndex ].value; 
		window.location.assign(cururl); 

	} 
	
	} 



function openDir(form) { 
	var newIndex = form.unidade.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Escolha um município!" ); 
	} else { 
		cururl = form.unidade.options[ newIndex ].value; 
		window.location.assign(cururl); 

	} 
	
	} 

function outraCidade(form2) { 
	var newIndex = form2.unidade2.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Escolha um município!" ); 
	} else { 
		cururl = form2.unidade2.options[ newIndex ].value; 
		window.location.assign(cururl); 

	} 
	
	} 
	
	
function album(form) { 
var newIndex = form.idAlbum.selectedIndex; 

	if ( newIndex == 0 ) { 
		alert( "Escolha um álbum!" ); 
	} else { 
		cururl = form.idAlbum.options[ newIndex ].value; 
		window.location.assign(cururl); 

	} 
	
	} 


