﻿function NoPostBackChatCallmeBack(sNewFormAction,Target)
{
	document.forms[0].action = sNewFormAction;
	document.forms[0].target = Target;
	document.forms[0].__VIEWSTATE.value = "";
	document.forms[0].__VIEWSTATE.name = "NOVIEWSTATE";
}

function DoSubmit(url,target)
{
  document.forms[0].action = url;
  document.forms[0].target = target;
  document.forms[0].submit();
}

//function ReloadPopupParentWindow()
//{
//    //Se nella finestra opener sono presenti controlli, provoca il postback della finestra stessa, con msgBox(Restry/Cancel)
//	window.opener.location.reload();
//}

function RedirectToPopupParentWindow()
{
    //Redirige alla pagina senza postback della pagina stessa
	window.opener.location = window.opener.location; 
}

function winOpResizable(link,width,height,scrollbars,resizable)
{
  window.open(link,'popup','toolbar="no",scrollbars='+scrollbars+',resizable='+resizable+',height='+height+',width='+width+'');
}

function winOpSecurityInfo()
{
  var boardAirport = document.getElementById("ctl00_contentBody_ucItineraryControl_ucBoardPoint_cboRelated").value;
	winOp('SecurityInfo.aspx?BoardAirport=' + boardAirport, '800', '640', 'yes')
}

function winOpChat(link,target,width,height,scrollbars,resizable)
{
  window.open(link,target,'toolbar="no",scrollbars='+scrollbars+',resizable='+resizable+',height='+height+',width='+width+'');
}