﻿// JScript File

var popUp;
function ConsultarArchivos(idname1,idname2)
{
	popUp = window.open('UploadImagenes.aspx?DirectoryFile=Imagenes&formname=' + document.forms[0].name + 
		'&id1=' + idname1 + '&id2=' + idname2, 
		'popupcal', 
		'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=0px,left=5px,width=' + screen.width/1.2 + 'px,height=' + screen.height/1.2 + 'px');
}

function ConsultarEnlaces(idname1,idname2)
{
	popUp = window.open('FrmEnlaces.aspx?formname=' + document.forms[0].name + 
		'&id1=' + idname1 + '&id2=' + idname2, 
		'popupcal', 
		'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=0px,left=5px,width=600px,height=500px');
}



function SetValue(formName, id, newValue)
{
	window.opener.document.getElementById(id).value=newValue;
	
	

}	

function QuitaImagen(control,control2)
{
     document.getElementById(control).value='';
    document.getElementById(control2).value='';
    
}
function QuitaEnlaces(control,control2)
{
   document.getElementById(control).value='';
    document.getElementById(control2).value='';
    
    
}

function enviarMensaje() {
						var enviarNoticia = document.getElementById('enviarNoticia');
						if (enviarNoticia.style.display == "none") {
							enviarNoticia.style.display = "block";
						} else {
							enviarNoticia.style.display = "none";
						}
						
					}

