

//funzione per aprire nuova finestra con indicizzazione da parte dei MdR
function yodaPopUp(strURL,strType,strWidth,strHeight,nameWin) {
	var strOptions="";
	var sw = screen.width;
	var sh = screen.height;
	var xPos = Math.round(sw/2)-100;
	var yPos = Math.round(sh/2)-300;
	if (strType=="bars") strOptions="scrollbars=yes,resizable=no,status=no,height="+strHeight+",width="+strWidth+",left="+xPos+",top="+yPos+",screenX="+xPos+",screenY="+yPos;
	if (strType=="fixed") strOptions="resizable=no,status=no,height="+strHeight+",width="+strWidth+",left="+xPos+",top="+yPos+",screenX="+xPos+",screenY="+yPos;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL,nameWin,strOptions);
}


