//*******************************************************************************************
//*******************************************************************************************
//***** Apre Finestra Popup chiudendo la precedente e mantenendo Focus su Popup**************
//*******************************************************************************************

function popupWindow(path,name,width,height){  
	popup = window.open(path,name,"width=" + width + ",height=" + height + ",scrollbars=no,top=0,left=0");
	if ( popup.document.close() ) {
		popup.document.close()
	}
}

function popupWindowScroll(path,name,width,height){  
	popup = window.open(path,name,"width=" + width + ",height=" + height + ",scrollbars=yes,top=0,left=0");
	if ( popup.document.close() ) {
		popup.document.close()
	}
}

//*******************************************************************************************
//****** <a href="javascript:popupWindow('path_n.html','name','width','height')"> ***********
//*******************************************************************************************
//****** Da inserire nelle pag Popup: window.focus(); ***************************************
//*******************************************************************************************
//*******************************************************************************************


