function show(Picture,PictName) {
 document.images[PictName].src=Picture;
};

function open_win (my_path,w,h){
		pop_win = window.open(my_path,'pop_win','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no,copyhistory=no,width='+w+',height='+h+',marginwidth=0,marginheight=0');
};

function jumpPage (newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value;
	if (newPage != "") {
	window.location.href = newPage 
	  }
};

function open_auguri (my_path){
	largo=500;
	alto=356;
	posh=Math.floor((screen.height-alto)/2); 
	posw=Math.floor((screen.width-largo)/2);
	
	pop_win = window.open(my_path,'pop_win','scrollbars=no,width='+largo+',height='+alto+',top='+posh+',left='+posw);

};