// abre a imagem em tamanho real em outra janela

function openIt(urlLoc) {
  _winName = "BigPicWindow";
  _info = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=auto,resizable=yes,dependent=yes,height=300,width=420,left=0,top=0,titlebar=yes";
  window.open("bigImage.aspx?img=" + urlLoc,_winName,_info);
} 

function ICSPicker(controlo){

		window.open("findICS.aspx?" +"txt='" + controlo + "'","ICS","width=430, height=330, scrollbars=no, resizable=no");
}
function CTPicker(controlo,CT){

		window.open("findCT.aspx?" +"txt='" + controlo + "'&CT=" + CT,"Comissao_Tecnica","width=430, height=330, scrollbars=no, resizable=no");
}
function TCPicker(controlo,CT,TN){

		window.open("findTC.aspx?" +"txt='" + controlo + "'&CT=" + CT + "&TN=" + TN,"Comite_Tecnico","width=430, height=330, scrollbars=no, resizable=no");
}
function DescritorPicker(controlo){

		window.open("findDescritor.aspx?" +"txt='" + controlo + "'","Descritor","width=430, height=330, scrollbars=no resizable=no");
}

function noPostBack(sNewFormAction)
{	document.forms[0].target = "_blank";
    document.forms[0].action = sNewFormAction;
    document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';
}