<!-- 
/********************************************************************
* 												funValidaciones.js	*
* Autor: CREAVISION Digital											*
* Fecha de creacion: 18/12/2003										*
* Funciones:	fncPopup()											*
*				fncEstado()											*
*				fncEstadoGeneral()									*
* Comentarios: 														*
*********************************************************************/

function fncPopup(strURL, intAncho, intAlto, strNombre) { var intCenterX = ((screen.width-9)/2) - (intAncho/2); var intCenterY = ((screen.height-57)/2) - (intAlto/2); window.open(strURL,strNombre,'directories=0,resizable=0,location=0,status=0,scrollbars=0,toolbar=0,menubar=0,width='+intAncho+',height='+intAlto+',screenX='+intCenterX+',screenY='+intCenterY+',left='+intCenterX+',top='+intCenterY+''); }
function fncEstado(strMsg) { window.status = strMsg; return false; }
function fncEstadoGeneral(strMsg) { window.defaultStatus = strMsg; return false; }
-->