var strLinkPopup="about:blank";
var m_strModalBaseParams= 'font-family:Verdana;font-size:12;dialogWidth:60em;dialogHeight:40em';

//-----------------------------------------------------
function ModalSearchBox(strPage, oInputFile, oParentDocument, strUrlParams)
{ 
 
   
   var strResults= showModalDialog(strPage, oInputFile.value, m_strModalBaseParams);
     
   //alert(strResults);
   if(oParentDocument != null
   && strResults != null
   && strResults != "") oParentDocument.location.href=strUrlParams + strResults;
}
//-----------------------------------------------------
function ModalMsgBox(strPage, oParentDocument, strRedirUrlParams)
{ 
   var strResults= showModalDialog(strPage, oParentWindow, m_strModalBaseParams);
   
   if(oParentDocument != null
   && strResults != "") oParentDocument.location.href=strRedirUrlParams + strResults;
}
//-----------------------------------------------------
function ReturnModalResults(strResults)
{
   //alert(strResults);
   
   window.returnValue=strResults;
   window.close();
}
//-----------------------------------------------------
function popup_redir(strLink, pParentWindow)
{ 
  m_pParentWindow=pParentWindow;//continuare da qui....
  popup_window(strLink,'newwin','top=0,left=0,width=800,height=580,resizable=yes,scrollbars=yes,menubar=no,toolbar=yes,directories=no,location=no,status=no');
}
//-----------------------------------------------------
function popup_sized(strLink, iWidth, iHeight)
{ 
  popup_window(strLink,'newwin','top=0,left=0,width='+iWidth+',height='+iHeight+',resizable=yes,scrollbars=yes,menubar=no,toolbar=yes,directories=no,location=no,status=no');
}
//-----------------------------------------------------
function popup(strLink)
{ 
  popup_window(strLink,'newwin','top=0,left=0,width=800,height=580,resizable=yes,scrollbars=yes,menubar=no,toolbar=yes,directories=no,location=no,status=no');
}
//-----------------------------------------------------

function popup_docs(strLink)
{ 
  popup_window(strLink,'newdoc','top=0,left=0,width=660,height=480,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}
//-----------------------------------------------------

function popup_small(strLink)
{ 
  popup_window(strLink,'win_ius','top=0,left=0,width=480,height=560,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}
//-----------------------------------------------------

function popup_small(strLink)
{ 
  popup_window(strLink,'win_small','top=0,left=0,width=800,height=500,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}
//-----------------------------------------------------

function popup_window(strLink,strWin,strParams)
{ 
  if(strLink==null || strLink=="") strLink=strLinkPopup;
  if(strLink==null || strLink=="") return;

	if(window.wNew!=null)
	{
	   window.wNew.close();
	}
          wNew=window.open(strLink,strWin,strParams,true);
}
//-----------------------------------------------------
