// JavaScript Document

	(function($) {
	  var cache = [];
	  $.preLoadImages = function() {
		var args_len = arguments.length;
		for (var i = args_len; i--;) {
		  var cacheImage = document.createElement('img');
		  cacheImage.src = arguments[i];
		  cache.push(cacheImage);
		}
	  }
	})(jQuery);
	
	var buscar = function(){
		var ancho = 800;
		var alto = 600;
		var x = (screen.width - ancho) / 2;
		var y = (screen.height - alto) / 2;
		var medidas = "height="+ alto + ",width="+ ancho + ",top=" + y + ",left=" + x + ",toolbar=no,resizable=yes,scrollbars=yes,toolbar=no,menubar=no";
		window.open("", "cp", medidas);
		document.form1.submit();
	}; 	
	
	var buscar2 = function(){
		var ancho = 800;
		var alto = 600;
		var x = (screen.width - ancho) / 2;
		var y = (screen.height - alto) / 2;
		var medidas = "height="+ alto + ",width="+ ancho + ",top=" + y + ",left=" + x + ",toolbar=no,resizable=yes,scrollbars=yes,toolbar=no,menubar=no";
		window.open("", "cp2", medidas);
		document.form2.submit();
	}; 		
