﻿// JScript File

var popUp;
function ConsultarImagenes(idname1,idname2,postBack)
{
	popUp = window.open('UploadImages.aspx?formname=' + document.forms[0].name + 
		'&id1=' + idname1 + '&id2=' + idname2  +  '&postBack=' + postBack, 
		'popupcal', 
		'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=5px,left=5px,width=' + screen.width/2 + 'px,Height=600px' );
}
function SetValue(formName, id, newValue, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[id].value = newValue;
	if (postBack)
		__doPostBack(id,'');
}	

function QuitaImagen(control)
{
    control.value='';
    
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  }
