function $() {
	var elements = new Array();
	for (var i = 0; i < arguments.length; i++) {
		var element = arguments[i];
		if (typeof element == 'string')
			element = document.getElementById(element);
		if (arguments.length == 1)
			return element;
		elements.push(element);
	}
	return elements;
}


function submitForm(form) {
	$(form).submit();
}

function detectImportespositivos(e) {
	opc = false;
	var evt = e || window.event;
	tecla = evt.keyCode;
	
	if (tecla > 45 && tecla < 58) {	opc = true;} /* los numeros del 0 al 9 junto con el . para el IE */
	if (evt.charCode > 47 && evt.charCode < 58) {opc = true;} /* los numeros del 0 al 9 para FF */
	if (tecla == 35 && !document.all) {opc = true;} /* la tecla END para FF */
	if (tecla == 46 && !document.all) {opc = true;} /* la tecla DELETE para FF */
	if (tecla > 36 && tecla < 41 && !document.all) {opc = true;	} /* las flechas para el FF */
	if (tecla == 8 || tecla==9 || tecla==13) {opc = true;} /* Backspace, TAB y Enter */
	if (evt.charCode == 46) {opc = true;} /* La tecla punto para el FF */	

	if(opc==false) {alert('Solo se aceptan numeros',3);}
	return opc;
}
