function Message(texto)
{
	alert(texto);
}

function Confirmation(texto){ 
  return confirm(texto);
}

function ReturnSelection(ControlName,SelectionValue){
	window.opener.document.forms['Form1'].elements[ControlName].value = SelectionValue;
	window.close();
}

function PopUpApp(ControlName){
    window.open('../General/SearchApp.aspx?FormName=Form1&ControlName='+ControlName, "wndUsuario", "scrollbars=yes,width=535,height=300,top=200,left=200");
 }
 
 function PopUpRole(ControlName){
    window.open('../General/SearchRole.aspx?FormName=Form1&ControlName='+ControlName, "wndUsuario", "scrollbars=yes,width=535,height=300,top=200,left=200");
 } 
