function mostrarSel(){
	if ($("#seleccion").css("display")=="none")
	{
		$("#seleccion").show(400);
		$("#mostrarText2").show()
		$("#mostrarText").hide();
		}
else{
		$("#seleccion").hide(400);
		$("#mostrarText").show()
		$("#mostrarText2").hide();
		}
}

		
var ventana
function OpenWindow(DatURL){
 ventana=window.open(DatURL, "Imprimir pedido", "toolbar=no,directories=no,menubar=no,status=yes,scrollbars=yes,width=800,height=800,resizable=yes");
}
